To delete a local branch:
git branch -d the_local_branch
To delete a remote branch:
it push origin :the_remote_branch
But pay attention when working with remote branches, you should make sure that nobody bases/uses that branch.
To delete a local branch:
git branch -d the_local_branch
To delete a remote branch:
it push origin :the_remote_branch
But pay attention when working with remote branches, you should make sure that nobody bases/uses that branch.