Friday, June 05, 2015

git recipes


Git: prune local branches without remotes

git branch -vv | grep ': gone]' | awk '{print $1}' | xargs git branch -D 

No comments: