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 中打开已在工作目录中覆盖的文件的原始版本(HEAD),而无需重置更改?这对于查看二进制文件(如图像)之前和之后非常有用,其中 git 不会提供有用的输出。
理想情况下,可以同时打开两个版本(也可能是索引),以便并排查看它们。
您至少可以将该二进制文件复制到其他地方,以便能够打开它:
git show HEAD:yourBinaryfile > /elsewhere
有关. _ _git show
git show