git origin delete branch code example
Example 1: git delete remote branches in local git
# Fetch changes from all remotes and locally delete
# remote deleted branches/tags etc
# --prune will do the job :-;
git fetch --all --prune
Example 2: Delete a Git Branch In Local And Remotely
git push <remote_name> --delete <branch_name>