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 filename显示差异,同时 git show branch:path/to/filename显示文件的内容。
git show filename
git show branch:path/to/filename
我查看帮助(git show --help),我的理解是它应该默认为 HEAD,即git show HEAD:filename。
git show --help
git show HEAD:filename
但这会产生我预期的文件内容。有没有人有任何见解?
git show <path>相当于git show HEAD <path>。
git show <path>
git show HEAD <path>
如果没有<path>,它会打印日志消息和头部提交的更改文件的差异。
<path>
使用<path>,如果文件在提交中更改,它会打印日志消息和头部提交的指定路径的差异。如果不是,则不打印任何内容。