Ariel Mejia
Posted on August 24, 2024
Working locally would tempt to acummulate a lot of git branches locally, most of the time we want to keep only the "main" branch, to execute this just run:
git branch | grep -v "main" | xargs git branch -D
Explanation
- The first section
git branch
list all the branches locally. -
grep -v "main"
filter out from the output branches list the main branch -
xargs git branch -D
runsgit branch -D
to all the branch items inside the branch list
Happy Coding!
💖 💪 🙅 🚩
Ariel Mejia
Posted on August 24, 2024
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
productivity ✍️🤖 Learn How to Improve Your Prompts and Get More Detailed and Relevant Responses
November 29, 2024