我知道这是在改写历史,很糟糕。

但是如何从远程分支永久删除少数提交?


当前回答

 git reset --soft commit_id
 git stash save "message"
 git reset --hard commit_id
 git stash apply stash stash@{0}
 git push --force

其他回答

你git reset -hard你的本地分支从工作树和索引中删除更改,你git push -force(或git push -force-with-lease)你修改后的本地分支到远程。 (这里的其他解决方案,涉及删除远程分支,并重新推送它)

这个SO回答说明了这样一个命令的危险,特别是如果人们依赖于远程历史记录进行自己的本地回购。 你需要准备好向人们指出git REBASE手册页的recovery FROM UPSTREAM REBASE部分。

另外,正如ringo在评论中指出的那样,如果远程分支被保护不受强制推送的影响,那么git恢复(如本回答中所示)可能更可取。


对于Git 2.23(2019年8月,9年后),您将使用新的命令Git switch。 即:git switch -C mybranch origin/mybranch~n (将n替换为要删除的提交数)

这将恢复索引和工作树,就像git重置一样——很难。 文档补充道:

- c <分公司> ——force-create <分公司> 类似于——create,除了如果<new-branch>已经存在,它将被重置为<起点>。 这是一个方便的快捷方式: $ git分支-f <新建分支> $ git switch <new-branch>

这可能是太少也太迟了,但帮助我的是听起来很酷的“核”选项。基本上,使用命令filter-branch,你可以在整个git历史记录中删除文件或更改大量文件。

这里最好解释一下。

只需要注意在恢复一个无效提交时使用last_working_commit_id

git reset --hard <last_working_commit_id>

所以我们不能重置为我们不想要的commit_id。

然后当然,我们必须推到远程分支:

git push --force

从pctroll的答案简化,类似的基于这篇博客文章。

# look up the commit id in git log or on github, e.g. 42480f3, then do
git checkout master
git checkout your_branch
git revert 42480f3
# a text editor will open, close it with ctrl+x (editor dependent)
git push origin your_branch
# or replace origin with your remote

TL:博士;

n . git switch -C branch_name origin/branch_name~ Git push—force

完成后,远程分支将被n次提交还原。


解释:

使用git开关,按n次提交重置分支。c选项将强制创建具有相同名称的新分支。 将branch_name替换为分支名称, 将n(在命令的末尾)替换为要恢复的提交数。 命令1:git switch -C branch_name origin/branch_name~n 例如:git switch -C feature/dashboard origin/feature/dashboard~1 //返回dashboard分支的1次提交。 强制推送局部更改 命令#2:git push——force


提示:要撤消已提交(未推送)的更改,git将重置HEAD~