我只想将特定提交所做的更改还原到给定文件。
我可以为此使用 git revert 命令吗?
还有其他简单的方法吗?
这里描述了我见过的最干净的方法
git show some_commit_sha1 -- some_file.c | git apply -R
类似于 VonC 的响应,但使用git showand git apply。
git show
git apply