3

最好使用 SourceTree 或简单的 git 命令,我将如何撤消先前提交中对 1 个文件的更改。换句话说,如何撤消提交,但仅针对已提交的许多文件中的一个?

希望避免必须撤消整个提交,然后重新提交除 1 文件更改之外的所有更改。

编辑: 我最终只是通过编辑手动“恢复” 1 文件。但是得到了 2 个好看的答案,我会选择一个在更多情况下似乎有效的答案。

4

3 回答 3

3

做:

git revert <commit> --no-commit     #reverts the whole commit, putting changes in index and working dir
git reset HEAD .                    #clears index of changes
git add <fileyouwanttorevert>       #adds changes to that one file to index
git commit -m "Reverting the file"  #commits that one file's changes
git checkout .                      #gets rid of all the changes in working directory
于 2016-02-08T21:00:52.793 回答
3

如果您要撤消最新的提交并且尚未推送,则可以发出以下命令:

git checkout HEAD^ -- <file_path>  # revert and stage the problematic file
git commit --amend                 # edit the latest commmit
于 2016-02-08T21:03:41.173 回答
0

要在任意提交中恢复对文件的更改,

git revert $thecommit              # revert the whole commit
git reset --hard @{1}              # in what turns out to have been a throwaway commit
git checkout @{1} $thatfile        # take what you want

但是如果不需要的更改在最近的提交中,您可以直接检查未更改的版本

git checkout @^ $thatfile          # restore mainline-parent content
于 2016-02-19T04:17:19.077 回答