how cani remove remote branch code example
Example 1: git delete origin 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