Answers for "Cannot delete local git branch"

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 "Shell/Bash"

Browse Popular Code Answers by Language