Answers for "git remove local branches which are not on remote"

8

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
1

git delete branches that aren't on remote

git fetch --all --prune
Posted by: Guest on December-31-2020

Code answers related to "git remove local branches which are not on remote"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language