Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Github GUI,并且我有一个名为 2.4 的项目的旧版本,但是某个文件中的差异太大而无法看到。
我可以通过命令行显示提交中的差异:8f135b0吗?
8f135b0
在什么和什么之间?当前和旧的提交?
git diff HEAD 8f135b0
更一般地说,git-diff可以进行两次提交并显示它们之间的差异。HEAD 是您所在的当前头部的符号名称。
git-diff
有关man git-diff更多信息,请参阅。
man git-diff
命令:
git show 8f135b0
...它向您展示了该提交作为差异引入的更改,以及提交消息和其他详细信息。