Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/joeyism/node-branch-cli
- Owner: joeyism
- Created: 2015-08-10T22:51:52.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-27T02:00:56.000Z (about 9 years ago)
- Last Synced: 2024-10-31T16:58:44.905Z (12 days ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/branch-cli
- Size: 141 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
◯ branchNotBeingUsedBy 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