Delete a Remote Branch
Learn to delete a remote branch.
We'll cover the following...
Deletion using the git push command
We can delete a remote branch named new_branch using a git push command as in the example given below:
$ git push origin :new_branch
...
Ask