how to delete current branch 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: 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 3: delete a branch git

// delete branch locally
git branch -d localBranchName

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

// delete branch locally
git branch -d localBranchName

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

// refresh branch list
git fetch -p

Example 4: how to delete branch locally

$ git branch -d <local-branch>

Example 5: git delete branch

## Deleting local branch; branch is not fully merged
git branch -D feature/login

Tags:

Ruby Example