Keep a folder on your machine with only your most relevant git repositories.
- Currently, there is only support for repositoris from GitHub
- Include repos based on:
- Open issues
- Number of watchers
- Number of stars
- Whether or not the repo is a fork
npm install -g active-git
mkdir your-directory && cd your-directory
and then...
active-git <github username>
Your repos will be cloned to your folder along with a config.yml defining the default configs.
To change which repos are included by active-git just modify the defaults in the config.yml. You can generate it with this command:
active-git init
It should look something like this:
# github username
username: <username>
# ssh clones
ssh: true
# minimum number of stars a repo needs to be included
minStars: 1
# minimum number of watchers a repo needs to be included
minWatchers: 1
# topics a repo needs to be included
topics:
- <topic>
# whether or not to allow forked repos to be cloned
forks: false
# which repos do you want to exclude from updates
excludedRepos:
- <repo name>
After saving changes to the config, run
active-git
active-git init-service
active-git remove-service
MIT
Please submit an issue Here if you find a bug or would like to request a feature. Otherwise, fork the repo and send in pull requests if you would like to contribute.
Please email me at benjamin@famousstick.com if you have any questions about this package.