答案 0 :(得分:3)
首先让我们确定这将会做什么:
ANDROIDAPP-137-actions-are-slow
分支上的提交移至master
ANDROIDAPP-137-actions-are-slow
分支首先回到主人:
git checkout master
现在从你的分支机构获得工作;重新加入该分支:
git rebase ANDROIDAPP-137-actions-are-slow
现在您的提交应该在master
和ANDROIDAPP-137-actions-are-slow
分支上,您可以查看:
git log --all --graph --decorate --oneline
所以你可以删除jira分支:
git branch -D ANDROIDAPP-137-actions-are-slow
并远程删除它:
git push origin :ANDROIDAPP-137-actions-are-slow
答案 1 :(得分:1)
如果我正确地阅读了您的日志,您似乎需要做的就是改造/合并,您将会感到高兴:
git checkout master
git rebase ANDROIDAPP-137-actions-are-slow
git branch -d ANDROIDAPP-137-actions-are-slow
如果rebase不起作用,请改为合并。
的更多信息