1.0.3 • Published 5 years ago

autogit-command-pull v1.0.3

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

Autogit Command - Pull

A command for pulling from a remote.

Install

npm install --save autogit-command-pull

Usage

Options

This command uses the following options object:

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

Configuration

Add this command to your configuration:

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

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

CLI

Call it from the CLI with:

autogit pull

License

MIT © Fabio Spampinato