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 stash's 的--keep-index选项,但如果可能的话,我宁愿不藏起来。这可能吗?
git stash
--keep-index
尝试:
git show :path/to/file
也就是说,在您要查看的文件的路径前面git show加上一个。:
git show
:
此行为在gitrevisions联机帮助页中进行了描述。