from delete branches from local gi code example
Example 1: Delete a Git Branch In Local And Remotely
git push <remote_name> --delete <branch_name>
Example 2: how to delete branch locally
$ git branch -d <local-branch>
git push <remote_name> --delete <branch_name>
$ git branch -d <local-branch>