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.
很久以前我在一个分支上做过一些工作,现在我需要做一些改变,但不记得我做了什么。给定提交代码,我如何找出提交了哪些文件/更改?
git show <sha1>
在哪里
<sha1>
是你的“提交代码”
git whatchanged -1 -p <sha>是一种方式。git log -1 -p <sha>类似。
git whatchanged -1 -p <sha>
git log -1 -p <sha>