Answers for "remove all branches deleted on remote"

0

remove all branches deleted on remote

# set this alias in git.config
git config --global alias.gone "! git fetch -p && git for-each-ref --format '%(refname:short) %(upstream:track)' | awk '\$2 == \"[gone]\" {print \$1}' | xargs -r git branch -D"
# then run
git gone
Posted by: Guest on May-03-2021

Code answers related to "remove all branches deleted on remote"

Browse Popular Code Answers by Language