Cannot delete a remote branch created unintentionally
- by Himel
$ 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.