$ clear-branches
* feat/current
feat/bla
fix/component
Are you sure you want to delete these branches? [Y, n]
$ clear-branches -c, --force main,master
* feat/current
feat/bla
fix/component
main
master
Are you sure you want to delete these branches? [Y, n]
$ clear-branches --ignore=feat/current
feat/bla
fix/component
main
master
Are you sure you want to delete these branches? [Y, n]
$ clear-branches --ignore-pattern=/feat\/\w+/g
fix/component
main
master
Are you sure you want to delete these branches? [Y, n]
$ clear-branches -i, --interactive
Select the branches you want to delete:
[ ] feat/current
[ ] feat/bla
[ ] fix/component