github how to delete branches code example
Example 1: github delete branch
// delete branch locally
git branch -D localBranchName
// delete branch remotely
git push origin --delete remoteBranchName
Example 2: how to delete branch locally
$ git branch -d <local-branch>