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 中更改了一个图像文件,它是 2 次提交前的。我如何回到之前的 2 个提交?
通过命令行使用最少的命令还原此文件的最简单方法是什么?
只需查看该文件的旧版本:
git checkout HEAD~2 -- path/to/file
或更明确地说:
git checkout commit-id -- path/to/file