code to delete remote branch code example
Example 1: delete git branch
We can delete a branch by calling the branch command and passing in the -d option, followed by the branch name.
$ git branch -d <branchname>
Example 2: delete local and remote branch github
git branch -d branch_namegit branch -D branch_name