github remove a branch on origin code example
Example 1: git remove upstream branch
$ git branch --unset-upstream
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