Answers for "how to remove local git branch"

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
32

delete branch git

//delete locally
git branch -d branch_name

//delete remotely
//git push <remote_name> :<branch_name>
// ex. git push origin :serverfix
Posted by: Guest on May-25-2020
2

how to delete branch locally

$ git branch -d <local-branch>
Posted by: Guest on December-04-2020
0

git delete local branch

# HowTo delete multiple git branches on MAC / Linux / Unix environments 
# git branch | grep "<RegXpattern>" | xargs git branch -D
# here's an example to delete multiple branches that starts with "branch"
git branch | grep "branch*" | xargs git branch -D
Posted by: Guest on May-14-2021

Code answers related to "how to remove local git branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language