I was working with a friend on a project, and he edited a bunch of files that shouldn't have been edited. Somehow I merged his work into mine, either when I pulled it, or when I tried to just pick the specific files out that I wanted. I've been looking and playing for a long time, trying to figure out how to remove the commits that contain the edits to those files, it seems to be a toss up between revert and rebase, and there are no straightforward examples, and the docs assume I know more than I do.
下面是这个问题的简化版本:
给定下面的场景,我如何删除提交2?
$ mkdir git_revert_test && cd git_revert_test
$ git init
Initialized empty Git repository in /Users/josh/deleteme/git_revert_test/.git/
$ echo "line 1" > myfile
$ git add -A
$ git commit -m "commit 1"
[master (root-commit) 8230fa3] commit 1
1 files changed, 1 insertions(+), 0 deletions(-)
create mode 100644 myfile
$ echo "line 2" >> myfile
$ git commit -am "commit 2"
[master 342f9bb] commit 2
1 files changed, 1 insertions(+), 0 deletions(-)
$ echo "line 3" >> myfile
$ git commit -am "commit 3"
[master 1bcb872] commit 3
1 files changed, 1 insertions(+), 0 deletions(-)
预期的结果是
$ cat myfile
line 1
line 3
以下是我一直试图恢复的一个例子
$ git revert 342f9bb
Automatic revert failed. After resolving the conflicts,
mark the corrected paths with 'git add <paths>' or 'git rm <paths>'
and commit the result.
你可以使用git rebase删除不需要的提交。
假设您将同事的topic分支的一些提交包含到您的topic分支中,但后来决定不需要这些提交。
git checkout -b tmp-branch my-topic-branch # Use a temporary branch to be safe.
git rebase -i master # Interactively rebase against master branch.
此时,文本编辑器将打开交互式rebase视图。例如
通过删除它们的行来删除您不想要的提交
保存并退出
如果改基不成功,删除临时分支并尝试其他策略。否则,请继续执行以下说明。
git checkout my-topic-branch
git reset --hard tmp-branch # Overwrite your topic branch with the temp branch.
git branch -d tmp-branch # Delete the temporary branch.
如果将主题分支推到远程,可能需要强制推,因为提交历史已经更改。如果其他人在同一个分支上工作,给他们提个醒。
你可以使用git rebase删除不需要的提交。
假设您将同事的topic分支的一些提交包含到您的topic分支中,但后来决定不需要这些提交。
git checkout -b tmp-branch my-topic-branch # Use a temporary branch to be safe.
git rebase -i master # Interactively rebase against master branch.
此时,文本编辑器将打开交互式rebase视图。例如
通过删除它们的行来删除您不想要的提交
保存并退出
如果改基不成功,删除临时分支并尝试其他策略。否则,请继续执行以下说明。
git checkout my-topic-branch
git reset --hard tmp-branch # Overwrite your topic branch with the temp branch.
git branch -d tmp-branch # Delete the temporary branch.
如果将主题分支推到远程,可能需要强制推,因为提交历史已经更改。如果其他人在同一个分支上工作,给他们提个醒。
方法1
首先获取需要恢复的提交散列(例如:1406cd61)。简单的修复将在命令之下,
$ git revert 1406cd61
如果你在1406cd61文件提交后提交了更多与1406cd61文件相关的更改,上述简单命令将无法工作。然后你要做下面的步骤,也就是摘樱桃。
方法2
请遵循下面的操作顺序,因为我们正在使用——force,您需要对git回购有管理权限才能做到这一点。
步骤1:找到要删除git日志的提交前的提交
步骤2:签出提交git Checkout <commit hash>
步骤3:使用当前的checkout commit git checkout -b <new branch>创建一个新的分支
第4步:现在你需要在移除commit git cherry-pick <commit hash>之后添加commit
步骤5:现在对所有想要保留的提交重复步骤4。
步骤6:将所有提交添加到新分支并提交之后。检查所有东西是否处于正确的状态并按预期工作。再次检查已提交的所有内容:git状态
步骤7:切换到你的broken branch git checkout <broken branch>
第8步:现在执行一个硬重置,在你想要删除git重置之前的提交分支上——hard <commit hash>
步骤9:将固定的分支合并到这个分支git Merge <分支名称>
步骤10:将合并的更改推回原点。警告:这将覆盖远程回购!Git push——force origin <分支名称>
您可以在不创建新分支的情况下执行该过程,将步骤2和步骤3替换为步骤8,然后不执行步骤7和步骤9。