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-commit

A plugin for making a commit.
https://github.com/fabiospampinato/autogit-plugin-commit

autogit commit plugin

Last synced: about 2 months ago
JSON representation

A plugin for making a commit.

Awesome Lists containing this project

README

        

# Autogit Plugin - Commit

A plugin for making a commit.

## Install

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

## Usage

#### Options

This plugin uses the following options object:

```js
{
message: '' // The message of the commit
}
```

#### Configuration

Add this plugin to a command:

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

module.exports = {
commands: {
'my-command': [
commit ({ message: 'My commit' })
]
}
}
```

## License

MIT © Fabio Spampinato