how to delete upstream branch code example

Example 1: delete branch git

// delete branch locally
git branch -d localBranchName

// delete branch remotely
git push origin --delete remoteBranchName

Example 2: git how to delete origin branch

$ git push origin --delete feature/login

Example 3: delete remote git branch

git push --delete remoteName branchName

Example 4: git delete branch upstream

git push -d <remote_name> <branch_name>

Example 5: delete remote branch

git branch -r -d remoteBranchName

Example 6: 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