git delete remote branch
This is a simple example where the branch has the same name locally and remotely
To create a remote branch
git push origin newbranchname
To delete a remote branch
git push origin :newbranchname
To create a remote branch
git push origin newbranchname
To delete a remote branch
git push origin :newbranchname
Comments