git branch --unset-upstream : 清除一个远程跟踪 git push origin :the_branch : 删除一个远程分支 git merge --no-ff develop : 使用--no-ff参数后,会执行正常合并,在Master分支上生成一个新节点
git branch --unset-upstream
git push origin :the_branch
git merge --no-ff develop