美文网首页Git 汇总时光轴work
git blame && git show 查看

git blame && git show 查看

作者: 侯工 | 来源:发表于2018-09-26 23:38 被阅读0次

    前言:有时候我们想查看某个文件别修改了几次,被谁修改了,都修改了那些内容,我们应该怎么做呢?

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

    git blame name
    

    其显示格式为:
    commit ID | 代码提交作者 | 提交时间 | 代码位于文件中的行数 | 实际代码

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

    相关文章

      网友评论

        本文标题:git blame && git show 查看

        本文链接:https://www.haomeiwen.com/subject/mulsoftx.html