A small Ruby Gem to help you delete Git branches.
This implementation is a bit naive so be careful. If you select the current branch you have checked out, the gem will not delete it.
gem install prunerInside of a repository working directory:
prunerA multiselect prompt will appear. Use the arrow keys to move between branch names, and hit the spacebar on branches you want to delete. When you have finished making your selections, hit Enter.
The gem will then delete your branches! It's as easy as that.
Run the pruner command.
➜ prunerUse the spacebar to select the branches you want to delete and hit Enter.
➜ pruner
==== Select branches to delete ====
test_1, test_2, test_3
⬡ master
⬢ test_1
⬢ test_2
‣ ⬢ test_3Type Y and then hit Enter.
➜ pruner
==== Select branches to delete ====
test_1, test_2, test_3
==== Are you sure you want to delete these branches? ====
→ (Y/n) YThe branches will be deleted and the output will look like the output below.
➜ pruner
==== Select branches to delete ====
test_1, test_2, test_3
==== Are you sure you want to delete these branches? ====
→ Yes
==== Deleting Branches ====
- test_1
- test_2
- test_3
==== Branches Deleted ====After checking out the repo, run bin/setup to install dependencies.
To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/andrewmcodes/pruner. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.
This project uses Standard to minimize bike shedding related to code formatting.
Everyone interacting in the Pruner project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.
The gem is available as open source under the terms of the MIT License.