I want to delete a branch both locally and remotely.
$ git branch -d
To delete your branch locally and remotely
Checkout to master branch - git checkout master
git checkout master
Delete your remote branch - git push origin --delete
git push origin --delete
Delete your local branch - git branch --delete
git branch --delete