Tidy up stale git branches.
bash
$ cargo install git-tidy
bash
$ git tidy # executes "git branch -d" on ": gone" branches
```bash $ git tidy -f # same as above, but with "-D" instead of "-d"
$ git tidy --force ```
Present all stale (": gone") branches in a checkbox list, allowing user to opt-in to deletions.
```bash $ git tidy -i
$ git tidy --interactive
$ git tidy -if
$ git tidy --interactive --force ```