Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/joeyism/node-branch-cli

A CLI tool that allows manipulation of git branches in local git repository
https://github.com/joeyism/node-branch-cli

Last synced: 5 days ago
JSON representation

A CLI tool that allows manipulation of git branches in local git repository

Awesome Lists containing this project

README

        

# branch
A CLI tool that allows for manipulation of git branches

## Installation

> npm install -g branch-cli

## Usage

### Status
In your command line prompt, if you type

> branch

It will display the current branch status, including branch name, files that has been modified but added nor committed, and files that has been added but not committed.

### Delete
In your command line prompt, if you type

> branch delete

A list of branches will display, excluding the one you are currently on. An example is as such:

> ? Please select the branches you wish to delete: (Press to select)
❯◯ master
◯ develop
◯ branchNotBeingUsed

By pressing [Space], you can select or deselect branches. Then press [Enter] to delete branches.

## Versions
**1.1.0**
* Showing files that has been added and/or committed

**1.0.0**
* First working version