Skip to content

Instantly share code, notes, and snippets.

@joemaffei
Last active November 28, 2019 18:46
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 joemaffei/81c5676515bf5c63ff983a9ad947bfa1 to your computer and use it in GitHub Desktop.
Save joemaffei/81c5676515bf5c63ff983a9ad947bfa1 to your computer and use it in GitHub Desktop.
Delete branches merged to dev (powershell)
# 1. get list of branches merged to dev, filter out dev and master, without spaces in the beginning
# 2. delete each branch
git branch --merged dev --list "[!dev|master]*" --format "%(refname:short)" | ForEach-Object { git branch $_ -d }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment