Deleting remote master branch, refused due to bein

2019-01-10 10:48发布

How do I delete a remote master branch from GitHub/Bitbucket?

I'm trying:

# git push bb --delete master
remote: bb/acl: user is allowed. accepted payload.[K
remote: error: refusing to delete the current branch: refs/heads/master[K
To ssh://git@bitbucket.org/user/reponame.git
 ! [remote rejected] master (deletion of the current branch prohibited)
error: failed to push some refs to 'ssh://git@bitbucket.org/user/reponame.git' 

Also I tried

git push bb :master

But all this is not work.

2条回答
▲ chillily
2楼-- · 2019-01-10 11:10

In the settings block on the options tap in the settings page (well, just click on the Settings tab on your github repo page), you are able to change the default branch (you need to have the other default branch on github as well).

change default branch on github

After you have done that, you are able to remove it:

$ git push bb :master
查看更多
该账号已被封号
3楼-- · 2019-01-10 11:17

Note: for BitBucket, you would change the default branch by accessing the settings of your repo, and changing the branch at the "Main branch" combo box.

main branch on BitBucket

Once the main branch is no longer master, then you can push and remove master.

查看更多
登录 后发表回答