歡迎光臨
每天分享高質量文章

Git 的奇技淫巧

Git 常用命令集合,Fork 於 tips[1] 專案。
Git 是一個 “分散式版本管理工具”,簡單的理解版本管理工具:大家在寫東西的時候都用過 “回撤” 這個功能,但是回撤只能回撤幾步,假如想要找回我三天之前的修改,光用 “回撤” 是找不回來的。而 “版本管理工具” 能記錄每次的修改,只要提交到版本倉庫,你就可以找到之前任何時刻的狀態(文字狀態)。
下麵的內容就是列舉了常用的 Git 命令和一些小技巧,可以透過 “頁面內查詢” 的方式進行快速查詢:Ctrl/Command+f。
開卷必讀
如果之前未使用過 Git,可以學習 Git 小白教程[2]入門。
  • 一定要先測試命令的效果後,再用於工作環境中,以防造成不能彌補的後果!到時候別拿著砍刀來找我

  • 所有的命令都在git version 2.7.4(Apple Git-66)下測試透過

  • 統一概念:

    • 工作區:改動(增刪檔案和內容)

    • 暫存區:輸入命令:git add 改動的檔案名,此次改動就放到了 ‘暫存區’

    • 本地倉庫(簡稱:本地):輸入命令:git commit 此次修改的描述,此次改動就放到了 ’本地倉庫’,每個 commit,我叫它為一個 ‘版本’。

    • 遠端倉庫(簡稱:遠端):輸入命令:git push 遠端倉庫,此次改動就放到了 ‘遠端倉庫’(GitHub 等)

    • commit-id:輸出命令:git log,最上面那行 commit xxxxxx,後面的字串就是 commit-id

  • 如果喜歡這個專案,歡迎 Star、提交 Pr、反饋問題[3]

展示幫助資訊
  1. git help -g
The command output as below:
  1. The common Git guides are:
  2. attributes Defining attributes per path
  3. cli Git command-line interface and conventions
  4. core-tutorial A Git core tutorial for developers
  5. cvs-migration Git for CVS users
  6. diffcore Tweaking diff output
  7. everyday A useful minimum set of commands for Everyday Git
  8. glossary A Git Glossary
  9. hooks Hooks used by Git
  10. ignore Specifies intentionally untracked files to ignore
  11. modules Defining submodule properties
  12. namespaces Git namespaces
  13. repository-layout Git Repository Layout
  14. revisions Specifying revisions and ranges for Git
  15. tutorial A tutorial introduction to Git
  16. tutorial-2 A tutorial introduction to Git: part two
  17. workflows An overview of recommended workflows with Git
  18. 'git help -a' and 'git help -g' list available subcommands and some concept guides. See 'git help ' or 'git help ' to read about a specific subcommand or concept.
回到遠端倉庫的狀態
拋棄本地所有的修改,回到遠端倉庫的狀態。
  1. git fetch --all && git reset --hard origin/master
重設第一個 commit
也就是把所有的改動都重新放回工作區,並清空所有的 commit,這樣就可以重新提交第一個 commit 了。
  1. git update-ref -d HEAD
展示工作區和暫存區的不同
輸出工作區和暫存區的 different(不同)。
  1. git diff
還可以展示本地倉庫中任意兩個 commit 之間的檔案變動:
  1. git diff <commit-id> <commit-id>
展示暫存區和最近版本的不同
輸出暫存區和本地最近的版本(commit)的 different(不同)。
  1. git diff --cached
展示暫存區、工作區和最近版本的不同
輸出工作區、暫存區 和本地最近的版本(commit)的 different(不同)。
  1. git diff HEAD
快速切換到上一個分支
  1. git checkout -
刪除已經合併到 master 的分支
  1. git branch --merged master | grep -v '^\*\| master' | xargs -n 1 git branch -d
展示本地分支關聯遠端倉庫的情況
  1. git branch -vv
關聯遠端分支
關聯之後,git branch -vv 就可以展示關聯的遠端分支名了,同時推送到遠端倉庫直接:git push,不需要指定遠端倉庫了。
  1. git branch -u origin/mybranch
或者在 push 時加上 -u 引數
  1. git push origin/mybranch -u
列出所有遠端分支
-r 引數相當於:remote
  1. git branch -r
列出本地和遠端分支
-a 引數相當於:all
  1. git branch -a
建立並切換到本地分支
  1. git checkout -b <branch-name>
從遠端分支中建立並切換到本地分支
  1. git checkout -b <branch-name> origin/<branch-name>
刪除本地分支
  1. git branch -d <local-branchname>
刪除遠端分支
  1. git push origin --delete <remote-branchname>
或者
  1. git push origin :<remote-branchname>
重新命名本地分支
  1. git branch -m <new-branch-name>
檢視標簽
  1. git tag
展示當前分支的最近的 tag
  1. git describe --tags --abbrev=0
檢視標簽詳細資訊
  1. git tag -ln
本地建立標簽
  1. git tag <version-number>
預設 tag 是打在最近的一次 commit 上,如果需要指定 commit 打 tag:
  1. $ git tag -a <version-number> -m "v1.0 釋出(描述)" <commit-id>
推送標簽到遠端倉庫
首先要保證本地建立好了標簽才可以推送標簽到遠端倉庫:
  1. git push origin <local-version-number>
一次性推送所有標簽,同步到遠端倉庫:
  1. git push origin --tags
刪除本地標簽
  1. git tag -d <tag-name>
 
刪除遠端標簽
 
刪除遠端標簽需要先刪除本地標簽,再執行下麵的命令:
  1. git push origin :refs/tags/<tag-name>
切回到某個標簽
一般上線之前都會打 tag,就是為了防止上線後出現問題,方便快速回退到上一版本。下麵的命令是回到某一標簽下的狀態:
  1. git checkout -b branch_name tag_name
放棄工作區的修改
  1. git checkout <file-name>
放棄所有修改:
  1. git checkout .
恢復刪除的檔案
  1. git rev-list -n 1 HEAD -- #得到 deleting_commit
  2. git checkout ^ -- #回到刪除檔案 deleting_commit 之前的狀態
以新增一個 commit 的方式還原某一個 commit 的修改
  1. git revert <commit-id>
回到某個 commit 的狀態,並刪除後面的 commit
和 revert 的區別:reset 命令會抹去某個 commit id 之後的所有 commit
  1. git reset <commit-id> #預設就是-mixed引數。
  2. git reset mixed HEAD^ #回退至上個版本,它將重置HEAD到另外一個commit,並且重置暫存區以便和HEAD相匹配,但是也到此為止。工作區不會被更改。
  3. git reset soft HEAD~3 #回退至三個版本之前,只回退了commit的資訊,暫存區和工作區與回退之前保持一致。如果還要提交,直接commit即可
  4. git reset hard <commit-id> #徹底回退到指定commit-id的狀態,暫存區和工作區也會變為指定commit-id版本的內容
修改上一個 commit 的描述
如果暫存區有改動,同時也會將暫存區的改動提交到上一個 commit
  1. git commit --amend
檢視 commit 歷史
  1. git log
檢視某段程式碼是誰寫的
blame 的意思為‘責怪’,你懂的。
  1. git blame <file-name>
顯示本地更新過 HEAD 的 Git 命令記錄
每次更新了 HEAD 的 Git 命令比如 commint、amend、cherry-pick、reset、revert 等都會被記錄下來(不限分支),就像 shell 的 history 一樣。 這樣你可以 reset 到任何一次更新了 HEAD 的操作之後,而不僅僅是回到當前分支下的某個 commit 之後的狀態。
  1. git reflog
修改作者名
  1. git commit --amend --author='Author Name '
修改遠端倉庫的 url
  1. git remote set-url origin <URL>
增加遠端倉庫
  1. git remote add origin <remote-url>
列出所有遠端倉庫
  1. git remote
檢視兩個星期內的改動
  1. git whatchanged --since='2 weeks ago'
把 A 分支的某一個 commit,放到 B 分支上
這個過程需要 cherry-pick 命令,參考[4]。
  1. git checkout <branch-name> && git cherry-pick <commit-id>
給 Git 命令起別名
簡化命令
  1. git config --global alias.<handle>
  2. 比如:git status 改成 git st,這樣可以簡化命令
  3. git config --global alias.st status
儲存當前的修改,但不用提交 commit
詳解可以參考廖雪峰老師的 Git 教程[5]。
  1. git stash
儲存當前狀態,包括 untracked 的檔案
untracked 檔案:新建的檔案
  1. git stash -u
展示所有 stashes
  1. git stash list
回到某個 stash 的狀態
  1. git stash apply <stash@{n}>
回到最後一個 stash 的狀態,並刪除這個 stash
  1. git stash pop
刪除所有的 stash
  1. git stash clear
從 stash 中拿出某個檔案的修改
  1. git checkout <stash@{n}> -- <file-path>
展示所有 tracked 的檔案
  1. git ls-files -t
展示所有 untracked 的檔案
  1. git ls-files --others
展示所有忽略的檔案
  1. git ls-files --others -i --exclude-standard
強制刪除 untracked 的檔案
可以用來刪除新建的檔案。如果不指定檔案檔案名,則清空所有工作的 untracked 檔案。clean 命令,註意兩點:
  1. clean 後,刪除的檔案無法找回

  2. 不會影響 tracked 的檔案的改動,只會刪除 untracked 的檔案

 

  1. git clean <file-name> -f
強制刪除 untracked 的目錄
可以用來刪除新建的目錄,註意:這個命令也可以用來刪除 untracked 的檔案。詳情見上一條。
  1. git clean <directory-name> -df
展示簡化的 commit 歷史
  1. git log --pretty=oneline --graph --decorate --all
把某一個分支到匯出成一個檔案
  1. git bundle create <branch-name>
從包中匯入分支
新建一個分支,分支內容就是上面 git bundle create 命令匯出的內容
  1. git clone repo.bundle <repo-dir> -b <branch-name>
 
執行 rebase 之前自動 stash
 
  1. git rebase --autostash
 
從遠端倉庫根據 ID,拉下某一狀態,到本地分支
 
  1. git fetch origin pull/<id>/head:<branch-name>
 
詳細展示一行中的修改
 
  1. git diff --word-diff
 
清除 gitignore 檔案中記錄的檔案
 
  1. git clean -X -f
展示所有 alias 和 configs
註意: config 分為:當前目錄(local)和全域性(golbal)的 config,預設為當前目錄的 config
  1. git config --local --list(當前目錄)
  2. git config --global --list(全域性)
展示忽略的檔案
  1. git status --ignored
commit 歷史中顯示 Branch1 有的,但是 Branch2 沒有 commit
  1. git log Branch1 ^Branch2
在 commit log 中顯示 GPG 簽名
  1. git log --show-signature
刪除全域性設定
  1. git config --global --unset <entry-name>
新建並切換到新分支上,同時這個分支沒有任何 commit
 
相當於儲存修改,但是重寫 commit 歷史
  1. git checkout --orphan <branch-name>
展示任意分支某一檔案的內容
  1. git show <branch-name>:<file-name>
clone 下來指定的單一分支
  1. git clone -b <branch-name> --single-branch https://github.com/user/repo.git
忽略某個檔案的改動
關閉 track 指定檔案的改動,也就是 Git 將不會在記錄這個檔案的改動
  1. git update-index --assume-unchanged path/to/file
恢復 track 指定檔案的改動
  1. git update-index --no-assume-unchanged path/to/file
忽略檔案的許可權變化
不再將檔案的許可權變化視作改動
  1. git config core.fileMode false
以最後提交的順序列出所有 Git 分支
最新的放在最上面
  1. git for-each-ref --sort=-committerdate --format='%(refname:short)' refs/heads/
在 commit log 中查詢相關內容
透過 grep 查詢,given-text:所需要查詢的欄位
  1. git log --all --grep=''
把暫存區的指定 file 放到工作區中
不新增引數,預設是 -mixed
  1. git reset <file-name>
強制推送
  1. git push -f <remote-name> <branch-name>
一圖詳解
高畫質圖:https://github.com/521xueweihan/git-tips/blob/master/assets/git.png
優雅的提交 Commit 資訊
使用 Angular 團隊提交規範[6]。
主要有以下組成:
  • 標題行:必填,描述主要修改型別和內容

  • 主題內容:描述為什麼修改,做了什麼樣的修改,以及開發的思路等等

  • 頁尾註釋:放 Breaking Changes 或 Closed Issues

 

常用的修改項:
  • type:commit 的型別

  • feat:新特性

  • fix:修改問題

  • refactor:程式碼重構

  • docs:檔案修改

  • style:程式碼格式修改,註意不是 css 修改

  • test:測試用例修改

  • chore:其他修改,比如構建流程,依賴管理

  • scope:commit 影響的範圍,比如:route,component,utils,build……

  • subject:commit 的概述

  • body:commit 具體修改內容,可以分為多行

  • footer:一些備註,通常是 BREAKING CHANGE 或修複的 bug 的連結

使用Commitizen代替 git commit
可以使用 cz-cli[7] 工具代替 git commit。
全域性安裝:
  1. npm install -g commitizen cz-conventional-changelog
  2. echo '{ "path": "cz-conventional-changelog" }' > ~/.czrc
全域性安裝後使用 git cz 代替 git commit 就可以了,如下圖:
 
相關連結:
  1. https://github.com/git-tips/tips

  2. http://rogerdudler.github.io/git-guide/index.zh.html

  3. https://github.com/521xueweihan/git-tips/issues

  4. http://sg552.iteye.com/blog/1300713#bc2367928

  5. https://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/00137602359178794d966923e5c4134bc8bf98dfb03aea3000

  6. https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#-git-commit-guidelines

  7. https://github.com/commitizen/cz-cli

原文連結:https://github.com/521xueweihan/git-tips
贊(0)

分享創造快樂