如何还原一个提交中的一个文件并包含多个文件

问题描述 投票:0回答:1

假设我已经提交了5个文件。提交后,我注意到我需要撤消这5个文件中一个文件的更改。这可能吗 ?如果不是最好的话,为什么要撤消对一个文件的更改?

git egit
1个回答
0
投票

从ChatterOne扩展(并在他的评论上稍加调整),如果您想要的是修订版本(并忽略不正确的修订):

git checkout HEAD~ -- path-to-file
git commit --amend --no-edit # replace the revision that I just created with this new revision I'm creating
© www.soinside.com 2019 - 2024. All rights reserved.