Answers for "how to delete local branches"

167

delete local branch

// 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
Posted by: Guest on April-07-2020
1

how to delete local master branch in git

git delete
Posted by: Guest on August-13-2020
-1

remove local branch

git branch -d branch_namegit branch -D branch_name
Posted by: Guest on May-26-2020
0

How to Delete Local/Remote Git Branches

$ git branch -r | egrep -v -f /dev/fd/0  <(git branch -vv | grep origin) | xargs git branch -d
Posted by: Guest on August-21-2020
0

git delete local branch

$ git for-each-ref --format '%(refname:short) %(upstream:track)' |
  awk '$2 == "[gone]" {print $1}' |
  xargs -r git branch -D

Deleted branch fix-typo (was 7b57d4f).
Deleted branch grammar-fix (was 01257bd).
Posted by: Guest on May-15-2021

Code answers related to "how to delete local branches"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language