A command for pulling from a remote.
npm install --save autogit-command-pullThis 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
}Add this command to your configuration:
const pull = require ( 'autogit-command-pull' );
module.exports = {
commands: {
pull: pull ({ /* YOUR OPTIONS */ })
}
}Call it from the CLI with:
autogit pullMIT © Fabio Spampinato