git config
路徑 | 設置方法 | 說明 |
/etc/gitconfig | git config –system | 系統配置,對所有用戶生效 |
~/.gitconfig | git config –global | 用戶配置 |
<項目目錄 >/.git/config | git config | 項目配置 |
git config --list git config user.name
git help git --help man git
git init .
git clone [url]
git status
git add <file>
.gitignoregit
git diff
git commit
git rm <file> git rm --cached <file> # 將文件從版本管理中移除,但不刪除文件
git log
git commit -m "some files" git add forgotten.txt git commit --amend
使用git stash能夠保存臨時修改。app
git stash git stash list git stash apply
git log --online git log --graph git log --all
git remote -v
git remote add <name> <url>
git fetch <name>
git push origin master
git remote show origin
git remote rm <name>
git remote rename <old> <new>
git branch testing
git checkout testing
git checkout -b iss53
git merge hotfix
git branch -d hotfix
git branch