git delete remote branch from local code example

Example 1: delete branch from remote

// delete branch locally
git branch -d localBranchName

//delete local branch that is unmerged
git branch -D localBranchName

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

Example 2: how to delete a branch git

// delete branch locally
git branch -d localBranchName

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

Example 3: 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 4: github delete branch remote

$ git push -d <remote_name> <branch_name>
$ git branch -d <branch_name>

Example 5: Delete a Git Branch In Local And Remotely

git push <remote_name> --delete <branch_name>