Answers for "git remove branches not in remote"

5

git delete local branches not on remote

git fetch -p && for branch in $(git branch -vv | grep ': gone]' | awk '{print $1}'); do git branch -D $branch; done
Posted by: Guest on April-05-2021
2

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

Code answers related to "git remove branches not in remote"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language