1 常用
git pull origin master # 下載代碼及快速合并
git fetch origin # 從遠程庫獲取代碼
git checkout master # 切換到master分支
git commit -m "first version" # 提交
git log # 查看提交歷史
git config --global user.name "YOUR NAME" # 設(shè)置用戶名
$ git config --global user.email "YOUR EMAIL ADDRESS" # 設(shè)置郵箱</pre>
2 別名Alias
git config --global alias.co="checkout" # 切換分支
git config --global alias.cm="commit -m" # 提交
git config --global alias.pullm="pull origin master" # 拉取分支
git config --global alias.log="git log --oneline --graph --decorate --color=always" # 單行、分顏色顯示記錄
$ git config --global alias.logg="git log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(bold white)— %an%C(reset)%C(bold yellow)%d%C(reset)' --abbrev-commit --date=relative" # 復(fù)雜顯示
3 創(chuàng)建版本庫
git init # 初始化本地版本庫</pre>
4 修改和提交
git diff # 查看變更內(nèi)容
git add <file> # 跟蹤指定的文件
git rm <file> # 刪除文件
git commit -m “commit message” # 提交所有更新過的文件
$ git commit --amend # 修改最后一次提交</pre>
5 查看提交歷史
git log -p <file> # 查看指定文件的提交歷史
$ git blame <file> # 以列表方式查看指定文件的提交歷史</pre>
6 撤消
git reset --hard <version> # 撤銷到某個特定版本
git checkout -- <file> # 同上一個命令
$ git revert <commit> # 撤消指定的提交</pre>
7 分支與標簽
git checkout <branch/tag> # 切換到指定分支或標簽
git branch -d <branch> # 刪除本地分支
git tag <tagname> # 基于最新提交創(chuàng)建標簽
git tag -d <tagname> # 刪除標簽
git cherry-pick 62ecb3
8 合并與衍合
git merge --abort # 取消當前合并忿偷,重建合并前狀態(tài)
git rebase <branch> # 衍合指定分支到當前分支</pre>
9 遠程操作
git remote show <remote> # 查看指定遠程版本庫信息
git remote remove <remote> # 刪除指定的遠程版本庫
git pull <remote> <branch> # 下載代碼及快速合并
git push <remote> :<branch/tag-name> # 刪除遠程分支或標簽
$ git push --tags # 上傳所有標簽</pre>
10 打包
git archive --format=zip --output ../v1.2.zip v1.2 # 打包v1.2標簽的文件,保存在上一級目錄v1.2.zip文件中
$ git archive --format=zip v1.2 > ../v1.2.zip # 作用同上一條命令
git打包命令會自動忽略.gitignore
中指定的目錄和文件灼舍,以及.git
目錄萧福。
11 全局和局部配置
- 全局配置保存在:
$Home/.gitconfig
- 本地倉庫配置保存在:
.git/config
12 遠程與本地合并
如果在遠程創(chuàng)建了代碼倉,而且已經(jīng)初始化擎值,本地是具體的源代碼慌烧,那么工作流程應(yīng)該是:
git add . # 添加本地代碼
git pull origin master # 下載遠程代碼
git push -u origin master # 上傳代碼</pre>