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.
- Host: GitHub
- URL: https://github.com/fabiospampinato/autogit-command-github-sync
- Owner: fabiospampinato
- License: mit
- Archived: true
- Created: 2018-10-08T03:47:37.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-01-24T20:29:02.000Z (about 6 years ago)
- Last Synced: 2025-04-12T16:44:38.249Z (10 months ago)
- Topics: autogit, command, github, sync
- Language: TypeScript
- Size: 23.4 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
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