for deleting a branch using command line use these: 1.delete a branch locally
git branch -d branch_name
2.in order to force deletion (if branch hasn't merged)
git branch -D branch_name
3.in order to delete a remote branch
git push origin --delete branch_name