Skip to main content
deepak

Featured

Delete all local branches which are not on remote

git fetch --all -p; git branch -vv | grep ": gone]" | awk '{ print $1 }' | xargs -n 1 git branch -D

Comments