git delete all local branches starting with code example
Example 1: delete all local branches git
$ git branch | grep -v "master" | xargs git branch -D
Example 2: git delete all branches except master
git branch | grep -v "master" | xargs git branch -D
Example 3: git branch delete all local branches
// hard delete
git branch -D $(git branch)