Skip to main content
signature

How to delete all branches merged that has been merged to master?

 
git branch | grep -v "master" | xargs git branch -D
 
How to delete all branches merged that has been merged to master?