Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/fabiospampinato/autogit-plugin-stage

A plugin for staging files.
https://github.com/fabiospampinato/autogit-plugin-stage

autogit plugin stage

Last synced: about 1 month ago
JSON representation

A plugin for staging files.

Awesome Lists containing this project

README

        

# Autogit Plugin - Stage

A plugin for staging files.

## Install

```sh
npm install --save autogit-plugin-stage
```

## Usage

#### Options

This plugin uses the following options object:

```js
{
files: ['-A'] // Files to stage
}
```

#### Configuration

Add this plugin to a command:

```js
const stage = require ( 'autogit-plugin-stage' );

module.exports = {
commands: {
'my-command': [
stage ({ /* YOUR OPTIONS */ })
]
}
}
```

## License

MIT © Fabio Spampinato