Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fabiospampinato/autogit-plugin-pull
A plugin for pulling from a remote.
https://github.com/fabiospampinato/autogit-plugin-pull
autogit plugin pull
Last synced: 3 months ago
JSON representation
A plugin for pulling from a remote.
- Host: GitHub
- URL: https://github.com/fabiospampinato/autogit-plugin-pull
- Owner: fabiospampinato
- License: mit
- Archived: true
- Created: 2018-10-08T03:49:00.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-24T20:28:37.000Z (almost 5 years ago)
- Last Synced: 2024-07-24T03:25:41.432Z (3 months ago)
- Topics: autogit, plugin, pull
- Language: TypeScript
- Size: 16.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Autogit Plugin - Pull
A plugin for pulling from a remote.
## Install
```sh
npm install --save autogit-plugin-pull
```## Usage
#### Options
This plugin uses the following options object:
```js
{
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 plugin to a command:
```js
const pull = require ( 'autogit-plugin-pull' );module.exports = {
commands: {
'my-command': [
pull ({ /* YOUR OPTIONS */ })
]
}
}
```## License
MIT © Fabio Spampinato