bran-gbd
v1.0.3
Published
A CLI tool to interactively delete Git branches. Forked from https://github.com/stefanwille/git-branch-delete
Maintainers
Readme
git-branch-delete
Interactive command line tool that makes it comfortable to delete several local Git branches at once, excluding the currently checked-out branch.
Demo:

Installation
Using npm:
npm install -g bran-gbdUsing yarn:
yarn global add bran-gbdFor development (using yarn link):
yarn linkNote: If you are using yarn link, you need to build the project first by running yarn build.
Usage
bran-gbdor
bran-gbdThis starts a command line UI that helps you select and delete local Git branches.
The current branch is displayed above the interactive prompt and is not selectable. Use the up and down arrows to change the selected branch. The spacebar can be used to add a branch to the set of to-be-deleted branches. Pressing Enter will finalize the selection of branches to delete. Pressing Esc will exit the tool without deleting any branches.
Publishing (for package maintainers)
- Build the project:
yarn build - Unlink (if previously linked):
yarn unlink - Publish:
npm publish
