我有两个分支。分期和Beta。暂存中包含代码(包括文件),我根本不需要。如何让Beta完全覆盖Staging,以便这些文件或代码都不会从Staging合并到Beta版。
我看到有些人建议这样做:
git checkout staging
git merge -s ours beta
但我不相信预先存在的文件会是“代码冲突”,因此不会被删除。我错了吗?如果我是对的,我将如何做到这一点?
答案 0 :(得分:29)
您可以简单地删除staging
并根据beta
:
git branch -D staging
git checkout beta
git branch staging
答案 1 :(得分:23)
如果您不关心关于staging
的旧历史记录,您可以重新创建它:
git checkout beta
git branch -f staging
如果你关心关于staging
的旧历史,那么事情会变得更有趣:
git checkout staging # First, merge beta into staging so we have
git merge -s theirs beta # a merge commit to work with.
git checkout beta # Then, flip back to beta's version of the files
git reset --soft staging # Then we go back to the merge commit SHA, but keep
# the actual files and index as they were in beta
git commit --amend # Finally, update the merge commit to match the
# files and index as they were in beta.
答案 2 :(得分:8)
我建议你重新命名,以防你改变主意。
git branch -m staging staging_oops
git checkout beta
git branch staging
如果你真的无法忍受额外的分支:
git branch -D staging_oops
答案 3 :(得分:0)
如果分期历史不会成为问题,您可以简单地执行此操作。
git checkout staging
git reset --hard beta
请记住,在上述命令和之后,分段的历史将会消失 登台 将支持 beta 分支。