git config --global user.name yourname git config --gloabl user.email youremail@qq.com
git config --help git help config man git-config
git config --global --add user.name yourname2
git config user.name(最近用戶) git config --get user.name git config --list --global(全部用戶)
git config --global --unset user.name youname2 git config --global --unset user.name git config --global --add user.name yourname2
git config --global user.name yourname2 git config --global user.name yourname3 git config --global --list(查看用戶)
git config --global alias.co checkout #設置checkout的別名爲co git config --global alias.br branch #設置branch的別名爲br git config --global alias.st status #設置status的別名爲st git config --global alias.ci commit #設置commit的別名爲ci git config --global alias.lol "log--oneline" #設置log--oneline一行顯示的別名爲lol
Git使用40個16進制的SHA-1 Hash來惟一標識對象。git
1.blob
2.tree
3.commit
4.tagcode
git init:初始化一個倉庫 git init --bare:建立一個裸倉庫 git clone:克隆一個倉庫 工做區working directory 暫緩區staging area 歷史區history repository
git add git commit git status git rm git mv gitignore git branch git tag git checkout git stash git merge