git remove local code example
Example 1: how to delete a branch git
// delete branch locally
git branch -d localBranchName
// delete branch remotely
git push origin --delete remoteBranchName
Example 2: remove branch local git
$ git branch -d branch_name
$ git branch -D branch_name
Example 3: delete branch from github mcd
$ git branch -d branch_name
$ git branch -D branch_name