how to delete a branch in github code example

Example 1: delete a branch in git

// delete branch locally
git branch -d localBranchName

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

Example 2: github delete branch

// delete branch locally
git branch -D localBranchName

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

Example 3: git how to delete origin branch

$ git push origin --delete feature/login

Example 4: 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 5: delete git origin

git remote rm destination

Example 6: delete git branch

We can delete a branch by calling the branch command and passing in the -d option, followed by the branch name.

$ git branch -d <branchname>