1.0.3 • Published 5 years ago

autogit-command-push v1.0.3

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

Autogit Command - Push

A command for pushing to a remote.

Install

npm install --save autogit-command-push

Usage

Options

This command uses the following options object:

{
  remote: 'origin', // The remote to push to
  branch: '' // The branch to push to, if not set the current branch will be used
}

Configuration

Add this command to your configuration:

const push = require ( 'autogit-command-push' );

module.exports = {
  commands: {
    push: push ({ /* YOUR OPTIONS */ })
  }
}

CLI

Call it from the CLI with:

autogit push

License

MIT © Fabio Spampinato