本文介绍了将更改还原到提交中的文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我只想将特定提交所做的更改仅还原到给定的文件.
I want to revert changes made by a particular commit to a given file only.
我可以使用git revert命令吗?
Can I use git revert command for that?
还有其他简单的方法吗?
Any other simple way to do it?
推荐答案
git show some_commit_sha1 -- some_file.c | git apply -R
类似于VonC的响应,但使用git show
和git apply
.
Similar to VonC's response but using git show
and git apply
.
这篇关于将更改还原到提交中的文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!