在使用 Git 提交了若干更新之后,又或者克隆了某个项目,想回顾下提交历史,我们可以使用 git log 命令查看。
针对我们前一章节的操作,使用 git log 命令列出历史提交记录如下:
$ git log
commit d3a35de8c83fccb662d4f7de94b3ddab2d726c9c (HEAD -> master)
Merge: 45e13e7 48fab66
Author: itzixishi <wangtengfirst@163.com>
Date: Sun Apr 19 19:00:27 2020 +0800
Merge branch 'change_site'
commit 45e13e7936c50d696a9249d177342f9e9caeb4b0
Author: itzixishi <wangtengfirst@163.com>
Date: Sun Apr 19 18:55:44 2020 +0800
修改代码
commit 48fab66bef07fb095db323f47ebdaa686c5d7d8b (change_site)
Author: itzixishi <wangtengfirst@163.com>
Date: Sun Apr 19 18:50:41 2020 +0800
changed the itzixishi.php
commit e14fe61a5bde00e8ce1e3ef0350a57400b3ebd14
Author: itzixishi <wangtengfirst@163.com>
Date: Sun Apr 19 18:24:35 2020 +0800
我们可以用 --oneline 选项来查看历史记录的简洁的版本。
$ git log --oneline
d3a35de (HEAD -> master) Merge branch 'change_site'
45e13e7 修改代码
48fab66 (change_site) changed the itzixishi.php
e14fe61 removed test.txt、add itzixishi.php
11d7638 add test.txt
3684b9f 第一次版本提交
6a63a41 修改 hello.php 文件
3070642 修改
e7505ca 修改 hello.php 文件
fbcc293 第一次版本提交
这告诉我们的是,此项目的开发历史。
我们还可以用 --graph 选项,查看历史中什么时候出现了分支、合并。以下为相同的命令,开启了拓扑图选项:
$ git log --oneline --graph
* d3a35de (HEAD -> master) Merge branch 'change_site'
|\
| * 48fab66 (change_site) changed the itzixishi.php
* | 45e13e7 修改代码
|/
* e14fe61 removed test.txt、add itzixishi.php
* 11d7638 add test.txt
* 3684b9f 第一次版本提交
现在我们可以更清楚明了地看到何时工作分叉、又何时归并。
你也可以用 --reverse 参数来逆向显示所有日志。
$ git log --oneline --reverse
fbcc293 第一次版本提交
e7505ca 修改 hello.php 文件
3070642 修改
6a63a41 修改 hello.php 文件
3684b9f 第一次版本提交
11d7638 add test.txt
e14fe61 removed test.txt、add itzixishi.php
48fab66 (change_site) changed the itzixishi.php
45e13e7 修改代码
d3a35de (HEAD -> master) Merge branch 'change_site'
如果只想查找指定用户的提交日志可以使用命令:git log --author , 例如,比方说我们要找 Git 源码中 itzixishi 提交的部分:
$ git log --author=itzixishi --oneline -5
d3a35de (HEAD -> master) Merge branch 'change_site'
45e13e7 修改代码
48fab66 (change_site) changed the itzixishi.php
e14fe61 removed test.txt、add itzixishi.php
11d7638 add test.txt
如果你要指定日期,可以执行几个选项:--since 和 --before,但是你也可以用 --until 和 --after。
例如,如果我要看 Git 项目中三周前且在四月十八日之后的所有提交,我可以执行这个(我还用了 --no-merges 选项以隐藏合并提交):
$ git log --oneline --before={3.weeks.ago} --after={2020-04-18} --no-merges
更多 git log 命令可查看:https://git-scm.com/docs/git-log
©2020 IT自习室京ICP备20010815号