how to delete a branch from local in git code example
Example 1: delete local branch
// delete branch locally
git branch -d localBranchName
//delete local branch that is unmerged
git branch -D localBranchName
// delete branch remotely
git push origin --delete remoteBranchName
Example 2: how to delete branch locally
$ git branch -d <local-branch>