brpaz
4/27/2019 - 2:01 PM

How to delete all your local branches but keep master

How to delete all your local branches but keep master #git

git branch | grep -v "master" | xargs git branch -D