我搞砸了,并将一个分支合并到了一个主人,这是在Heroku中。
有没有办法将代码从Heroku直接提取到项目的一个分支?
答案 0 :(得分:1)
我搞砸了并将分支合并到主人
按照这些步骤“恢复”混乱的主人
# checkout dummy branch - so you will be able to delete your local master
git checkout -b dummy1
# delete the "bad" branch (locally)
git branch -D master
# get updates from the server (in case there are changes)
fir fetch --all --prune
#checkout the original master
git checkout master
# remove the dummy branch
git branch -D dummy1
你们都准备好了。您的主服务器现在与远程服务器上的分支机构相同。