1.0.2 • Published 5 years ago

autogit-plugin-commit v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

Autogit Plugin - Commit

A plugin for making a commit.

Install

npm install --save autogit-plugin-commit

Usage

Options

This plugin uses the following options object:

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

Configuration

Add this plugin to a command:

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

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

License

MIT © Fabio Spampinato