Answers for "delete local branches that are available on the remote"

3

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

Code answers related to "delete local branches that are available on the remote"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language