Git 查看提交歷史 – git log

在使用 Git 提交了若干更新之後,又或者克隆了某個項目,想回顧下提交歷史,我們可以使用 git log 命令查看。

$ git log
//我們可以用 --oneline 選項來查看歷史記錄的簡潔的版本。

$ git log --oneline

88afe0e Merge branch 'change_site'
14b4dca 新增加一行
d7e7346 changed the site
556f0a0 removed test2.txt
2e082b7 add test2.txt
048598f add test.txt
==============================================================================================================================
//我們還可以用 --graph 選項,查看歷史中什麼時候出現了分支、合併。以下爲相同的命令,開啓了拓撲圖選項:

$ git log --oneline --graph

*   88afe0e Merge branch 'change_site'
|\  
| * d7e7346 changed the site
* | 14b4dca 新增加一行
|/  
* 556f0a0 removed test2.txt
* 2e082b7 add test2.txt
* 048598f add test.txt
* ==============================================================================================================================
//你也可以用 ‘--reverse‘參數來逆向顯示所有日誌。

$ git log --reverse --oneline

048598f add test.txt
2e082b7 add test2.txt
556f0a0 removed test2.txt
d7e7346 changed the site
14b4dca 新增加一行
88afe0e Merge branch 'change_site'
==============================================================================================================================
//如果只想查找指定用戶的提交日誌可以使用命令:git log --author , 例如,比方說我們要找 Git 源碼中 Linus 提交的部分

$ git log --author=Linus --oneline -5

81b50f3 Move 'builtin-*' into a 'builtin/' subdirectory
3bb7256 make "index-pack" a built-in
377d027 make "git pack-redundant" a built-in
b532581 make "git unpack-file" a built-in
112dd51 make "mktag" a built-in
==============================================================================================================================
//如果你要指定日期,可以執行幾個選項:--since 和 --before,但是你也可以用 --until 和 --after。
//例如,如果我要看 Git 項目中三週前且在四月十八日之後的所有提交,我可以執行這個(我還用了 --no-merges 選項以隱藏合併提交)

$ git log --oneline --before={3.weeks.ago} --after={2010-04-18} --no-merges

5469e2d Git 1.7.1-rc2
d43427d Documentation/remote-helpers: Fix typos and improve language
272a36b Fixup: Second argument may be any arbitrary string
b6c8d2d Documentation/remote-helpers: Add invocation section
5ce4f4e Documentation/urls: Rewrite to accomodate transport::address
00b84e9 Documentation/remote-helpers: Rewrite description
03aa87e Documentation: Describe other situations where -z affects git diff
77bc694 rebase-interactive: silence warning when no commits rewritten
636db2c t3301: add tests to use --format="%N"
發佈了27 篇原創文章 · 獲贊 0 · 訪問量 682
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章