Git - how delete remote branch

Delete remote branch:

git push origin :branch_name

And then you’ll still need to delete the branch locally:

git branch -d branch_name

Some more useful information about working with the remote branch - http://help.github.com/remotes/