Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wallymathieu/github-sync
Github sync script
https://github.com/wallymathieu/github-sync
fsharp github
Last synced: about 1 month ago
JSON representation
Github sync script
- Host: GitHub
- URL: https://github.com/wallymathieu/github-sync
- Owner: wallymathieu
- License: mit
- Created: 2020-01-19T18:22:59.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-31T09:49:25.000Z (about 4 years ago)
- Last Synced: 2024-11-08T19:51:58.543Z (3 months ago)
- Topics: fsharp, github
- Language: F#
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# github-sync
Simple program to sync github user or organisation repositories.
## Usage
First make sure to set environment variables with API information
- github_api_username
- github_api_tokenTo fetch users repositories from `myuser` into `/media/backupdrive/src/myuser`:
```cmd
dotnet run -p ~/src/github-sync/Console/ --dir /media/backupdrive/src/myuser/ --user myuser fetch
```To fetch organisations repositories from `myorg` into `/media/backupdrive/src/myorg`:
```cmd
dotnet run -p ~/src/github-sync/Console/ --dir /media/backupdrive/src/myorg/ --org myorg fetch
```