Tips and tricks
GIT - Delete all branches except master
Run this command in terminal in the directory of your git:
git branch | grep -v "develop" | grep -v "master" | xargs git branch -D
Run this command in terminal in the directory of your git:
git branch | grep -v "develop" | grep -v "master" | xargs git branch -D