我只是压缩了一些提交git rebase
并执行了git push --force
(我知道这是邪恶的)。
现在其他软件工程师有不同的历史记录,当他们执行时git pull
,Git将合并。除了执行操作外,是否有办法解决此问题rm my-repo; git clone git@example.org:my-repo.git
?
我需要类似的相反的东西git push --force
,但git pull --force
没有给出预期的结果。
我只是压缩了一些提交git rebase
并执行了git push --force
(我知道这是邪恶的)。
现在其他软件工程师有不同的历史记录,当他们执行时git pull
,Git将合并。除了执行操作外,是否有办法解决此问题rm my-repo; git clone git@example.org:my-repo.git
?
我需要类似的相反的东西git push --force
,但git pull --force
没有给出预期的结果。
Answers:
接收新的提交
git fetch
重启
您可以使用重置本地分支的提交git reset
。
更改本地分支的提交:
git reset origin/master --hard
但是要小心,如文档所述:
重置索引和工作树。自<commit>以来,工作树中对跟踪文件的任何更改都将被放弃。
如果您想实际保留本地所做的任何更改,请--soft
重置。这将更新分支的提交历史记录,但不会更改工作目录中的任何文件(然后您可以提交它们)。
变基
您可以使用git rebase
以下命令在任何其他提交/分支之上重播本地提交:
git rebase -i origin/master
这将在交互模式下调用rebase,您可以在其中选择如何应用不在基础之上的每个单独提交。
如果您删除的提交(带有git push -f
)已经被拉入本地历史记录,它们将被列为将被重新应用的提交-它们将需要作为重新设置的一部分被删除,或者它们将被简单地重新包含在历史记录中分支-并在下次推送时重新出现在远程历史记录中。
使用帮助可git command --help
获取有关任何上述(或其他)命令的更多详细信息和示例。
git reset origin/otherbranch --hard
reset --hard
,或选项2:reset --soft
+ rebase
,对不对?
这将无法修复已经在其中包含您不想要的代码的分支(请参见下文,了解如何执行此操作),但是如果他们已经拉了一些分支并且现在希望它是干净的(而不是“超前”)起源/分支),那么您只需:
git checkout some-branch # where some-branch can be replaced by any other branch
git branch base-branch -D # where base-branch is the one with the squashed commits
git checkout -b base-branch origin/base-branch # recreating branch with correct commits
注意:您可以通过在它们之间加上&&来组合所有这些
注2:Florian在评论中提到了这一点,但是谁在寻找答案时会阅读评论?
注意3:如果分支受到污染,则可以基于新的“哑分支”创建新分支,而只是进行摘樱桃提交。
例如:
git checkout feature-old # some branch with the extra commits
git log # gives commits (write down the id of the ones you want)
git checkout base-branch # after you have already cleaned your local copy of it as above
git checkout -b feature-new # make a new branch for your feature
git cherry-pick asdfasd # where asdfasd is one of the commit ids you want
# repeat previous step for each commit id
git branch feature-old -D # delete the old branch
现在,新功能是您的分支,无需额外的(可能是错误的)提交!
git checkout -b base-branch origin/base-branch
带有git checkout --track origin/base-branch
git checkout master && git branch -D test && git checkout -b test origin/test