git log 命令

Git 基本操作Git 基本操作

git 可以给仓库历史中的某一个提交点打上标签,常常用于标记发布结点( 比如:v1.0 、 v2.0 等)。

 

1. git log

git log 用于查看提交历史记录。

$ git log
commit d5e9fc2c811e0ca2b2d28506ef7dc14171a207d9 (HEAD -> master)
Merge: c68142b 7774248
Author: codebaoku <test@codebaoku.com>
Date:   Fri May 3 15:55:58 2019 +0800

    Merge branch 'change_site'

commit c68142b562c260c3071754623b08e2657b4c6d5b
Author: codebaoku <test@codebaoku.com>
Date:   Fri May 3 15:52:12 2019 +0800

    修改代码

commit 777424832e714cf65d3be79b50a4717aea51ab69 (change_site)
Author: codebaoku <test@codebaoku.com>
Date:   Fri May 3 15:49:26 2019 +0800

    changed the codebaoku.php

commit c1501a244676ff55e7cccac1ecac0e18cbf6cb00
Author: codebaoku <test@codebaoku.com>
Date:   Fri May 3 15:35:32 2019 +0800

 

2. git log --oneline

我们可以用 --oneline 选项来查看历史记录的简洁的版本。

$ git log --oneline
d5e9fc2 (HEAD -> master) Merge branch 'change_site'
c68142b 修改代码
7774248 (change_site) changed the codebaoku.php
c1501a2 removed test.txt、add codebaoku.php
3e92c19 add test.txt
3b58100 第一次版本提交

这告诉我们的是,此项目的开发历史。

 

3. git log --graph

我们还可以用 --graph 选项,查看历史中什么时候出现了分支、合并。以下为相同的命令,开启了拓扑图选项:

*   d5e9fc2 (HEAD -> master) Merge branch 'change_site'
|\  
| * 7774248 (change_site) changed the codebaoku.php
* | c68142b 修改代码
|/  
* c1501a2 removed test.txt、add codebaoku.php
* 3e92c19 add test.txt
* 3b58100 第一次版本提交

现在我们可以更清楚明了地看到何时工作分叉、又何时归并。

 

4. git log --reverse

我们可以用 --reverse 参数来逆向显示所有日志。

$ git log --reverse --oneline
3b58100 第一次版本提交
3e92c19 add test.txt
c1501a2 removed test.txt、add codebaoku.php
7774248 (change_site) changed the codebaoku.php
c68142b 修改代码
d5e9fc2 (HEAD -> master) Merge branch 'change_site'

 

5. git log --author

如果只想查找指定用户的提交日志可以使用命令: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

 

6. git log 指定日期

如果你要指定日期,可以执行几个选项:--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"

 

7. git log -p

我们可以用 git log -p filepath 查看某个文件的详细修改。

commit 6dd9901d6270a867d9674d674f4923dd77530ab4 (HEAD -> develop, origin/develop, origin/HEAD)Merge: cc64f62 6eae8e6
Author: codebaoku <codebaoku@codebaoku.com>
Date:   Wed Jul 1 17:41:41 2020 +0800
    Merge branch 'bugfix/storage' into 'develop'
    set router
    See merge request std/stdcms!29
commit 6eae8e66c97d9d005121e69645018aba8a4c5fea
Author: codebaoku <codebaoku@codebaoku.com>
Date:   Wed Jul 1 17:33:45 2020 +0800

Git 基本操作Git 基本操作

1. Git 是分布式的,SVN 是集中式的这是 Git 和 SVN 最大的区别。若能掌握这个概念,两者区别基本搞懂大半。因为 Git 是分布式的,所以 Git 支持离线工作 ...