Cannot delete a remote branch created unintentionally

Posted by Himel on Stack Overflow See other posts from Stack Overflow or by Himel
Published on 2010-05-24T09:20:02Z Indexed on 2010/05/24 9:31 UTC
Read the original article Hit count: 198

Filed under:
|
$ git branch -a
* SocialAct
  master
  remotes/origin/HEAD -> origin/master
  remotes/origin/SocialAct
  remotes/origin/social

I want to delete the remote branch "remotes/origin/social", and applied folloing command:

$ git branch -d -r origin/social
Deleted remote branch origin/social (was 26f6f61).

But I have no idea how to bring these changes remotely so that the branches are deleted from origin and everyone can see the changes. I tried git push but that does not work

Any help.

© Stack Overflow or respective owner

Related posts about git

Related posts about version-control