history This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ==== Clean local branches ==== Add this function to bashrc: <code> function gitcleanlocalbranches() { git remote prune origin git branch -vv | grep ': gone]'| grep -v "\*" | awk '{ print $1; }' | xargs -r git branch -D } </code>