国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > 綜合 > 正文

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

2024-07-21 02:02:45
字體:
來源:轉載
供稿:網友

Git 查看提交歷史

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

$ git logcommit 88afe0e02adcdfea6844bb627de97da21eb10af1Merge: 14b4dca d7e7346Author: w3cschool <w3c@w3cschool.cc>Date:  Sun Mar 1 15:03:42 2015 +0800  Merge branch 'change_site'    Conflicts:    test.txtcommit 14b4dcadbdc847207651d5a9fae0d315057f346eAuthor: w3cschool <w3c@w3cschool.cc>Date:  Sun Mar 1 14:53:15 2015 +0800  新增加一行commit d7e734640da06055e107eaf29cf350b3f1de1c2cAuthor: w3cschool <w3c@w3cschool.cc>Date:  Sun Mar 1 14:48:57 2015 +0800  changed the sitecommit 556f0a0637978097b82287ac665a717623b21f3fAuthor: w3cschool <w3c@w3cschool.cc>Date:  Sun Mar 1 14:40:34 2015 +0800  removed test2.txt

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

$ git log --oneline88afe0e Merge branch 'change_site'14b4dca 新增加一行d7e7346 changed the site556f0a0 removed test2.txt2e082b7 add test2.txt048598f add test.txt85fc7e7 test comment from w3cschool.cc

這告訴我們的是,此項目的開發歷史。

我們還可以用 --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* 85fc7e7 test comment from w3cschool.cc

現在我們可以更清楚明了地看到何時工作分叉、又何時歸并。

你也可以用 '--reverse'參數來逆向顯示所有日志。

$ git log --reverse --oneline85fc7e7 test comment from w3cschool.cc048598f add test.txt2e082b7 add test2.txt556f0a0 removed test2.txtd7e7346 changed the site14b4dca 新增加一行88afe0e Merge branch 'change_site'

如果只想查找指定用戶的提交日志可以使用命令:git log --author , 例如,比方說我們要找 Git 源碼中 Linus 提交的部分:

$ git log --author=Linus --oneline -581b50f3 Move 'builtin-*' into a 'builtin/' subdirectory3bb7256 make "index-pack" a built-in377d027 make "git pack-redundant" a built-inb532581 make "git unpack-file" a built-in112dd51 make "mktag" a built-in

如果你要指定日期,可以執行幾個選項:--since 和 --before,但是你也可以用 --until 和 --after。

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

$ git log --oneline --before={3.weeks.ago} --after={2010-04-18} --no-merges5469e2d Git 1.7.1-rc2d43427d Documentation/remote-helpers: Fix typos and improve language272a36b Fixup: Second argument may be any arbitrary stringb6c8d2d Documentation/remote-helpers: Add invocation section5ce4f4e Documentation/urls: Rewrite to accomodate transport::address00b84e9 Documentation/remote-helpers: Rewrite description03aa87e Documentation: Describe other situations where -z affects git diff77bc694 rebase-interactive: silence warning when no commits rewritten636db2c t3301: add tests to use --format="%N"

更多 git log 命令可查看:http://git-scm.com/docs/git-log

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 阳山县| 视频| 惠来县| 子长县| 西安市| 方山县| 高安市| 凌海市| 和林格尔县| 临清市| 远安县| 扬中市| 伊宁市| 石狮市| 通山县| 格尔木市| 商河县| 西贡区| 福建省| 东阳市| 松滋市| 永春县| 芷江| 奉节县| 四子王旗| 万盛区| 延吉市| 武山县| 嘉兴市| 江永县| 旬邑县| 大厂| 松桃| 谢通门县| 泉州市| 无极县| 宁南县| 锡林郭勒盟| 丹东市| 富顺县| 靖远县|