how to delete branch github terminal code example
Example 1: delete branch from remote
// 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: delete remote git branch
git push --delete remoteName branchName
Example 3: delete git origin
git remote rm destination