delete local branch and remote branch git code example
Example 1: git delete remote branch
$ git push -d <remote_name> <branch_name>
$ git branch -d <branch_name>
Example 2: delete local and remote branch github
git branch -d branch_namegit branch -D branch_name