新聞中心
本篇文章重點講解一下Git 的提交歷史,在日常開發(fā)中我們每天都在提交自己的更新代碼之倉庫,那么作為管理人員或者自己如何來查看提交了哪些呢?

成都創(chuàng)新互聯(lián)公司網(wǎng)站設計,為客戶量身定制各類網(wǎng)站建設業(yè)務,包括企業(yè)型、電子商務型、響應式網(wǎng)站開發(fā)、行業(yè)門戶型等各類網(wǎng)站,實戰(zhàn)經(jīng)驗豐富,成功案例眾多。以客戶利益為出發(fā)點,成都創(chuàng)新互聯(lián)公司網(wǎng)站制作為客戶規(guī)劃、按需制作網(wǎng)站符合企業(yè)需求、帶有營銷價值的網(wǎng)絡建站方案認真對待每一個客戶,我們不用口頭的語言來吹擂我們的優(yōu)秀,數(shù)千家的成功案例見證著我們的成長。
在使用 Git 提交了若干更新之后,又或者克隆了某個項目,想回顧下提交歷史,我們可以使用 git log 命令查看。 針對我們前一章節(jié)的操作,使用 git log 命令列出歷史提交記錄如下:
$ git log
commit d5e9fc2c811e0ca2b2d28506ef7dc14171a207d9 (HEAD -> master)
Merge: c68142b 7774248
Author: runoob test@runoob.com>
Date: Fri May 3 15:55:58 2019 +0800
Merge branch 'change_site'
commit c68142b562c260c3071754623b08e2657b4c6d5b
Author: runoob test@runoob.com>
Date: Fri May 3 15:52:12 2019 +0800
修改代碼
commit 777424832e714cf65d3be79b50a4717aea51ab69 (change_site)
Author: runoob test@runoob.com>
Date: Fri May 3 15:49:26 2019 +0800
changed the runoob.php
commit c1501a244676ff55e7cccac1ecac0e18cbf6cb00
Author: runoob test@runoob.com>
Date: Fri May 3 15:35:32 2019 +0800
我們可以用 –oneline 選項來查看歷史記錄的簡潔的版本。
$ git log --oneline
$ git log --oneline
d5e9fc2 (HEAD -> master) Merge branch 'change_site'
c68142b 修改代碼
7774248 (change_site) changed the runoob.php
c1501a2 removed test.txt、add runoob.php
3e92c19 add test.txt
3b58100 第一次版本提交
這告訴我們的是,此項目的開發(fā)歷史。
我們還可以用 –graph 選項,查看歷史中什么時候出現(xiàn)了分支、合并。以下為相同的命令,開啟了拓撲圖選項:
* d5e9fc2 (HEAD -> master) Merge branch 'change_site'
|\
| * 7774248 (change_site) changed the runoob.php
* | c68142b 修改代碼
|/
* c1501a2 removed test.txt、add runoob.php
* 3e92c19 add test.txt
* 3b58100 第一次版本提交
現(xiàn)在我們可以更清楚明了地看到何時工作分叉、又何時歸并。
你也可以用 –reverse 參數(shù)來逆向顯示所有日志。
$ git log --reverse --oneline
3b58100 第一次版本提交
3e92c19 add test.txt
c1501a2 removed test.txt、add runoob.php
7774248 (change_site) changed the runoob.php
c68142b 修改代碼
d5e9fc2 (HEAD -> master) 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
如果你要指定日期,可以執(zhí)行幾個選項:–since 和 –before,但是你也可以用 –until 和 –after。
例如,如果我要看 Git 項目中三周前且在四月十八日之后的所有提交,我可以執(zhí)行這個(我還用了 –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"
文章標題:Git提交歷史查看方法
文章來源:http://www.dlmjj.cn/article/cdohoce.html


咨詢
建站咨詢
