Deleting remote master branch, refused due to being the current branch

前端 未结 2 582
天命终不由人
天命终不由人 2020-11-30 22:37

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 payl         


        
相关标签:
2条回答
  • 2020-11-30 23:37

    Note: for Bitbucket, you would change the default branch by accessing the settings of your repository, 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.

    0 讨论(0)
  • 2020-11-30 23:37

    In the settings block on the options tap in the settings page (well, just click on the Settings tab on your GitHub repository 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
    
    0 讨论(0)
提交回复
热议问题