An open API service indexing awesome lists of open source software.

https://github.com/fabiospampinato/autogit-command-github-sync

A command for synchronizing repositories with GitHub.
https://github.com/fabiospampinato/autogit-command-github-sync

autogit command github sync

Last synced: 9 months ago
JSON representation

A command for synchronizing repositories with GitHub.

Awesome Lists containing this project

README

          

# Autogit Command - Github Sync

A command for synchronizing repositories with GitHub.

## Install

```sh
npm install --save autogit-command-github-sync
```

## Usage

#### Options

This command uses the following options object:

```js
{
token: '' // GitHub token
}
```

#### Configuration

Add this command to your configuration:

```js
const githubSync = require ( 'autogit-command-github-sync' );

module.exports = {
commands: {
'github-sync': githubSync ({ /* YOUR OPTIONS */ })
}
}
```

#### CLI

Call it from the CLI with:

```sh
autogit github-sync
```

## License

MIT © Fabio Spampinato