Answers for "delete multiple git branches locally"

3

git delete multiple branch local

// git remove multiple branch
// here pattern refers to few characters of branch name that is common between multiple branches

// delete branch locally
git branch | grep "pattern" | xargs git branch -d

// delete local branch that is unmerged
git branch | grep "pattern" | xargs git branch -D
Posted by: Guest on March-25-2021
0

delete branches in bulk git

Type in git branch | grep "<pattern>" for a preview of the branches that will be deleted.
Type in git branch | grep "<pattern>" | xargs git branch -D.
Posted by: Guest on July-09-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language