Answers for "delete local branch git not on remote"

3

delete local branches not on remote

git branch -vv | grep ': gone]'|  grep -v "\*" | awk '{ print $1; }' | xargs -r git branch -D
Posted by: Guest on May-06-2020
0

Remove All Local Branches not on Remote

$ git branch -r | egrep -v -f /dev/fd/0  <(git branch -vv | grep origin) | xargs git branch -d
Posted by: Guest on August-21-2020

Code answers related to "delete local branch git not on remote"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language