git push remove code example
Example 1: delete local branch git
git branch -d <branch_name>
Example 2: delete git branch remote
git push -d origin <branch_name>
Example 3: Delete a Git Branch In Local And Remotely
git push <remote_name> --delete <branch_name>
Example 4: How to Delete Local/Remote Git Branches
$ git branch -a
# *master
# b1
# remote/origin/master
# remote/origin/b1
$ git push origin --delete b1
# [...]
# - [deleted] b1