Skip to content

Instantly share code, notes, and snippets.

@midwire
Created August 26, 2022 13:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save midwire/42526519a7ddecf79d52eabff8bcd69e to your computer and use it in GitHub Desktop.
Save midwire/42526519a7ddecf79d52eabff8bcd69e to your computer and use it in GitHub Desktop.
[Git - sync local branches with remote] Remove local branches if they don't exist on the remote #git
# Use git branch -D to remove branches even if they are not fully merged
git fetch -p ; git branch -r | awk '{print $1}' | egrep -v -f /dev/fd/0 <(git branch -vv | grep origin) | awk '{print $1}' | xargs git branch -d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment