校园春色亚洲色图_亚洲视频分类_中文字幕精品一区二区精品_麻豆一区区三区四区产品精品蜜桃

主頁(yè) > 知識(shí)庫(kù) > Git 教程之查看提交歷史詳解

Git 教程之查看提交歷史詳解

熱門(mén)標(biāo)簽:嘟聲的電銷(xiāo)機(jī)器人 醫(yī)院地圖標(biāo)注 忻州外呼系統(tǒng)接口對(duì)接 洛陽(yáng)便宜外呼系統(tǒng)廠家 電銷(xiāo)機(jī)器人怎么收費(fèi) 地圖標(biāo)注和圖片標(biāo)注 語(yǔ)音平臺(tái)系統(tǒng) 湖北穩(wěn)定外呼系統(tǒng) 滄州智能外呼系統(tǒng)收費(fèi)

Git 查看提交歷史

在使用 Git 提交了若干更新之后,又或者克隆了某個(gè)項(xiàng)目,想回顧下提交歷史,我們可以使用 git log 命令查看。
針對(duì)我們前一章節(jié)的操作,使用 git log 命令列出歷史提交記錄如下:

$ git log
commit 88afe0e02adcdfea6844bb627de97da21eb10af1
Merge: 14b4dca d7e7346
Author: w3cschool w3c@w3cschool.cc>
Date:  Sun Mar 1 15:03:42 2015 +0800

  Merge branch 'change_site'
  
  Conflicts:
    test.txt

commit 14b4dcadbdc847207651d5a9fae0d315057f346e
Author: w3cschool w3c@w3cschool.cc>
Date:  Sun Mar 1 14:53:15 2015 +0800

  新增加一行

commit d7e734640da06055e107eaf29cf350b3f1de1c2c
Author: w3cschool w3c@w3cschool.cc>
Date:  Sun Mar 1 14:48:57 2015 +0800

  changed the site

commit 556f0a0637978097b82287ac665a717623b21f3f
Author: w3cschool w3c@w3cschool.cc>
Date:  Sun Mar 1 14:40:34 2015 +0800

  removed test2.txt

我們可以用 --oneline 選項(xiàng)來(lái)查看歷史記錄的簡(jiǎn)潔的版本。

$ 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
85fc7e7 test comment from w3cschool.cc

這告訴我們的是,此項(xiàng)目的開(kāi)發(fā)歷史。

我們還可以用 --graph 選項(xiàng),查看歷史中什么時(shí)候出現(xiàn)了分支、合并。以下為相同的命令,開(kāi)啟了拓?fù)鋱D選項(xiàng):

$ 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
* 85fc7e7 test comment from w3cschool.cc

現(xiàn)在我們可以更清楚明了地看到何時(shí)工作分叉、又何時(shí)歸并。

你也可以用 '--reverse'參數(shù)來(lái)逆向顯示所有日志。

$ git log --reverse --oneline
85fc7e7 test comment from w3cschool.cc
048598f add test.txt
2e082b7 add test2.txt
556f0a0 removed test2.txt
d7e7346 changed the site
14b4dca 新增加一行
88afe0e Merge branch 'change_site'

如果只想查找指定用戶(hù)的提交日志可以使用命令:git log --author , 例如,比方說(shuō)我們要找 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í)行幾個(gè)選項(xiàng):--since 和 --before,但是你也可以用 --until 和 --after。

例如,如果我要看 Git 項(xiàng)目中三周前且在四月十八日之后的所有提交,我可以執(zhí)行這個(gè)(我還用了 --no-merges 選項(xiàng)以隱藏合并提交):

$ 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 log 命令可查看:http://git-scm.com/docs/git-log

您可能感興趣的文章:
  • git rebase -i 修改歷史提交的方法

標(biāo)簽:巴彥淖爾 96 定州 內(nèi)蒙古 宜賓 防城港 山南 日照

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Git 教程之查看提交歷史詳解》,本文關(guān)鍵詞  Git,教程,之,查看,提交,歷史,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Git 教程之查看提交歷史詳解》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于Git 教程之查看提交歷史詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    主站蜘蛛池模板: 门源| 句容市| 辽中县| 诏安县| 咸阳市| 周口市| 若羌县| 大同市| 双桥区| 蒲城县| 天镇县| 革吉县| 长泰县| 平定县| 洞口县| 浦东新区| 连州市| 吉林省| 保德县| 贺兰县| 广州市| 靖远县| 贡觉县| 航空| 台山市| 山阴县| 深水埗区| 萨嘎县| 孟村| 扬中市| 临沭县| 永平县| 太保市| 衡水市| 车险| 雅安市| 夏邑县| 建德市| 简阳市| 务川| 漠河县|