Remove branch in remote git repo By Helge12 February, 201413 February, 2014Git If you have a remote git repo, and you want to delete a branch there, you can do: [bash] # if you want to delete the branch locally first, do: git branch -D branchname # then also remotely git push origin –delete branchname [/bash]