How to remove the git remote branch from bitbucket?

后端 未结 3 573
花落未央
花落未央 2021-02-04 00:56

I try to remove the git remote branch on the bitbucket by git push command:

qty:workspace qrtt1$ git push origin :my_branch
remote: fatal: bad object 00000000000         


        
3条回答
  •  耶瑟儿~
    2021-02-04 01:28

    I found the same problem, only the local is removed but not remote. Finally I found the solution from http://groups.google.com/group/gitorious/browse_thread/thread/5afe8581cdd96d2b, just use

    git push  :
    

    After that checked on bitbucket website, it should be gone.

提交回复
热议问题