git小技巧:git blame && git show 查看某一行代码的修改历史

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git小技巧:git blame && git show 查看某一行代码的修改历史相关的知识,希望对你有一定的参考价值。

    先查看某行代码由谁写的,在哪个commit中提交的:

git blame file_name
git blame -L 58,100 KeyboardActivity.java

    其显示格式为: 

    commit ID | 代码提交作者 | 提交时间 | 代码位于文件中的行数 | 实际代码 

    类似于下面这样:

技术分享

技术分享

    这样,我们就可以知道commit ID了,然后使用命令:Git show commitID来看~

    

本文出自 “梁肖技术中心” 博客,请务必保留此出处http://liangxiao.blog.51cto.com/3626612/1886961

以上是关于git小技巧:git blame && git show 查看某一行代码的修改历史的主要内容,如果未能解决你的问题,请参考以下文章

git blame 和git show commitID

Git -; git blame用法

查找问题的利器 - Git Blame

Eclipse 等效于 IntelliJ 的注释(或 Git Blame)

sh 根据`git blame`显示文件夹中所有文件的顶级作者列表。

IDEA的Annotate或Annotate with Git Blame