常用 Git 命令清單

轉自:http://www.ruanyifeng.com/blog/2015/12/git-cheat-sheet.html

一般來說,日常使用只要記住下圖6個命令,就可以了。但是熟練使用,恐怕要記住60~100個命令。


下面是我整理的常用 Git 命令清單。幾個專用名詞的譯名如下。

Workspace
工作區
Index / Stage
暫存區
Repository
倉庫區(或本地倉庫)
Remote
遠程倉庫


一、新建代碼庫

[html] view plain copy
  1. # 在當前目錄新建一個Git代碼庫  
  2. $ git init  
  3.   
  4. # 新建一個目錄,將其初始化爲Git代碼庫  
  5. $ git init [project-name]  
  6.   
  7. # 下載一個項目和它的整個代碼歷史  
  8. $ git clone [url]  

二、配置
Git的設置文件爲.gitconfig,它可以在用戶主目錄下(全局配置),也可以在項目目錄下(項目配置)。

[html] view plain copy
  1. # 顯示當前的Git配置  
  2. $ git config --list  
  3.   
  4. # 編輯Git配置文件  
  5. $ git config -e [--global]  
  6.   
  7. # 設置提交代碼時的用戶信息  
  8. $ git config [--global] user.name "[name]"  
  9. $ git config [--global] user.email "[email address]"  


三、增加/刪除文件

[html] view plain copy
  1. # 添加指定文件到暫存區  
  2. $ git add [file1] [file2] ...  
  3.   
  4. # 添加指定目錄到暫存區,包括子目錄  
  5. $ git add [dir]  
  6.   
  7. # 添加當前目錄的所有文件到暫存區  
  8. $ git add .  
  9.   
  10. # 添加每個變化前,都會要求確認  
  11. # 對於同一個文件的多處變化,可以實現分次提交  
  12. $ git add -p  
  13.   
  14. # 刪除工作區文件,並且將這次刪除放入暫存區  
  15. $ git rm [file1] [file2] ...  
  16.   
  17. # 停止追蹤指定文件,但該文件會保留在工作區  
  18. $ git rm --cached [file]  
  19.   
  20. # 改名文件,並且將這個改名放入暫存區  
  21. $ git mv [file-original] [file-renamed]  


四、代碼提交

[html] view plain copy
  1. # 提交暫存區到倉庫區  
  2. $ git commit -m [message]  
  3.   
  4. # 提交暫存區的指定文件到倉庫區  
  5. $ git commit [file1] [file2] ... -m [message]  
  6.   
  7. # 提交工作區自上次commit之後的變化,直接到倉庫區  
  8. $ git commit -a  
  9.   
  10. # 提交時顯示所有diff信息  
  11. $ git commit -v  
  12.   
  13. # 使用一次新的commit,替代上一次提交  
  14. # 如果代碼沒有任何新變化,則用來改寫上一次commit的提交信息  
  15. $ git commit --amend -m [message]  
  16.   
  17. # 重做上一次commit,幷包括指定文件的新變化  
  18. $ git commit --amend [file1] [file2] ...  

五、分支

[html] view plain copy
  1. # 列出所有本地分支  
  2. $ git branch  
  3.   
  4. # 列出所有遠程分支  
  5. $ git branch -r  
  6.   
  7. # 列出所有本地分支和遠程分支  
  8. $ git branch -a  
  9.   
  10. # 新建一個分支,但依然停留在當前分支  
  11. $ git branch [branch-name]  
  12.   
  13. # 新建一個分支,並切換到該分支  
  14. $ git checkout -b [branch]  
  15.   
  16. # 新建一個分支,指向指定commit  
  17. $ git branch [branch] [commit]  
  18.   
  19. # 新建一個分支,與指定的遠程分支建立追蹤關係  
  20. $ git branch --track [branch] [remote-branch]  
  21.   
  22. # 切換到指定分支,並更新工作區  
  23. $ git checkout [branch-name]  
  24.   
  25. # 切換到上一個分支  
  26. $ git checkout -  
  27.   
  28. # 建立追蹤關係,在現有分支與指定的遠程分支之間  
  29. $ git branch --set-upstream [branch] [remote-branch]  
  30.   
  31. # 合併指定分支到當前分支  
  32. $ git merge [branch]  
  33.   
  34. # 選擇一個commit,合併進當前分支  
  35. $ git cherry-pick [commit]  
  36.   
  37. # 刪除分支  
  38. $ git branch -d [branch-name]  
  39.   
  40. # 刪除遠程分支  
  41. $ git push origin --delete [branch-name]  
  42. $ git branch -dr [remote/branch]  

六、標籤

[html] view plain copy
  1. # 列出所有tag  
  2. $ git tag  
  3.   
  4. # 新建一個tag在當前commit  
  5. $ git tag [tag]  
  6.   
  7. # 新建一個tag在指定commit  
  8. $ git tag [tag] [commit]  
  9.   
  10. # 刪除本地tag  
  11. $ git tag -d [tag]  
  12.   
  13. # 刪除遠程tag  
  14. $ git push origin :refs/tags/[tagName]  
  15.   
  16. # 查看tag信息  
  17. $ git show [tag]  
  18.   
  19. # 提交指定tag  
  20. $ git push [remote] [tag]  
  21.   
  22. # 提交所有tag  
  23. $ git push [remote] --tags  
  24.   
  25. # 新建一個分支,指向某個tag  
  26. $ git checkout -b [branch] [tag]  

七、查看信息

[html] view plain copy
  1. # 顯示有變更的文件  
  2. $ git status  
  3.   
  4. # 顯示當前分支的版本歷史  
  5. $ git log  
  6.   
  7. # 顯示commit歷史,以及每次commit發生變更的文件  
  8. $ git log --stat  
  9.   
  10. # 搜索提交歷史,根據關鍵詞  
  11. $ git log -S [keyword]  
  12.   
  13. # 顯示某個commit之後的所有變動,每個commit佔據一行  
  14. $ git log [tag] HEAD --pretty=format:%s  
  15.   
  16. # 顯示某個commit之後的所有變動,其"提交說明"必須符合搜索條件  
  17. $ git log [tag] HEAD --grep feature  
  18.   
  19. # 顯示某個文件的版本歷史,包括文件改名  
  20. $ git log --follow [file]  
  21. $ git whatchanged [file]  
  22.   
  23. # 顯示指定文件相關的每一次diff  
  24. $ git log -p [file]  
  25.   
  26. # 顯示過去5次提交  
  27. $ git log -5 --pretty --oneline  
  28.   
  29. # 顯示所有提交過的用戶,按提交次數排序  
  30. $ git shortlog -sn  
  31.   
  32. # 顯示指定文件是什麼人在什麼時間修改過  
  33. $ git blame [file]  
  34.   
  35. # 顯示暫存區和工作區的差異  
  36. $ git diff  
  37.   
  38. # 顯示暫存區和上一個commit的差異  
  39. $ git diff --cached [file]  
  40.   
  41. # 顯示工作區與當前分支最新commit之間的差異  
  42. $ git diff HEAD  
  43.   
  44. # 顯示兩次提交之間的差異  
  45. $ git diff [first-branch]...[second-branch]  
  46.   
  47. # 顯示今天你寫了多少行代碼  
  48. $ git diff --shortstat "@{0 day ago}"  
  49.   
  50. # 顯示某次提交的元數據和內容變化  
  51. $ git show [commit]  
  52.   
  53. # 顯示某次提交發生變化的文件  
  54. $ git show --name-only [commit]  
  55.   
  56. # 顯示某次提交時,某個文件的內容  
  57. $ git show [commit]:[filename]  
  58.   
  59. # 顯示當前分支的最近幾次提交  
  60. $ git reflog  

八、遠程同步

[html] view plain copy
  1. # 下載遠程倉庫的所有變動  
  2. $ git fetch [remote]  
  3.   
  4. # 顯示所有遠程倉庫  
  5. $ git remote -v  
  6.   
  7. # 顯示某個遠程倉庫的信息  
  8. $ git remote show [remote]  
  9.   
  10. # 增加一個新的遠程倉庫,並命名  
  11. $ git remote add [shortname] [url]  
  12.   
  13. # 取回遠程倉庫的變化,並與本地分支合併  
  14. $ git pull [remote] [branch]  
  15.   
  16. # 上傳本地指定分支到遠程倉庫  
  17. $ git push [remote] [branch]  
  18.   
  19. # 強行推送當前分支到遠程倉庫,即使有衝突  
  20. $ git push [remote] --force  
  21.   
  22. # 推送所有分支到遠程倉庫  
  23. $ git push [remote] --all  

九、撤銷
[html] view plain copy
  1. # 恢復暫存區的指定文件到工作區  
  2. $ git checkout [file]  
  3.   
  4. # 恢復某個commit的指定文件到暫存區和工作區  
  5. $ git checkout [commit] [file]  
  6.   
  7. # 恢復暫存區的所有文件到工作區  
  8. $ git checkout .  
  9.   
  10. # 重置暫存區的指定文件,與上一次commit保持一致,但工作區不變  
  11. $ git reset [file]  
  12.   
  13. # 重置暫存區與工作區,與上一次commit保持一致  
  14. $ git reset --hard  
  15.   
  16. # 重置當前分支的指針爲指定commit,同時重置暫存區,但工作區不變  
  17. $ git reset [commit]  
  18.   
  19. # 重置當前分支的HEAD爲指定commit,同時重置暫存區和工作區,與指定commit一致  
  20. $ git reset --hard [commit]  
  21.   
  22. # 重置當前HEAD爲指定commit,但保持暫存區和工作區不變  
  23. $ git reset --keep [commit]  
  24.   
  25. # 新建一個commit,用來撤銷指定commit  
  26. # 後者的所有變化都將被前者抵消,並且應用到當前分支  
  27. $ git revert [commit]  
  28.   
  29. # 暫時將未提交的變化移除,稍後再移入  
  30. $ git stash  
  31. $ git stash pop  

十、其他

[html] view plain copy
  1. # 生成一個可供發佈的壓縮包  
  2. $ git archive  


來源:http://www.ruanyifeng.com/blog/2015/12/git-cheat-sheet.html

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章