git diff使用简单记录

Posted 苏导

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git diff使用简单记录相关的知识,希望对你有一定的参考价值。

转自: https://www.jianshu.com/p/acfa83e25c1d

1.比较两次commit提交之后的差异:
git diff hash1 hash2 --stat
能够查看出两次提交之后,文件发生的变化。

2.具体查看两次commit提交之后某文件的差异:
git diff hash1 hash2 – 文件名

3.比较两个分支的所有有差异的文件的详细差异:
diff branch1 branch2

4.比较两个分支的指定文件的详细差异
diff branch1 branch2 文件名(带路径)

5.比较两个分支的所有有差异的文件列表
diff branch1 branch2 --stat

以上是关于git diff使用简单记录的主要内容,如果未能解决你的问题,请参考以下文章

1.6 diff

git diff提示filemode发生改变

git diff 的简单使用(比较版本区别)

gitlog和diff区别

DevOps使用教程 华为云(19)git diff查看刚刚更新的文件的差异

Xcode 10 storyboard和info.plist git diff没有正确显示