delete the branch locally in git code example
Example 1: delete local and remote branch github
$ git push <remote_name> :<branch_name>
Example 2: How to Delete Local/Remote Git Branches
$ git branch -r | egrep -v -f /dev/fd/0 <(git branch -vv | grep origin) | xargs git branch -d