git delete remote branch in github 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: how do i delete remote branch
//delete the remote name in git branch
git remote remove <name_of_remote>