Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save skeptrunedev/f464c35318f11cb4917b841b8a9d2c14 to your computer and use it in GitHub Desktop.
Save skeptrunedev/f464c35318f11cb4917b841b8a9d2c14 to your computer and use it in GitHub Desktop.
Delete All Git Branches Except Main Unix Shell Script
git branch | grep -v main | xargs git branch -D
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment