├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── clonegits.py ├── requirements.txt ├── samplerules.json ├── tests.py └── tests.sh /.gitignore: -------------------------------------------------------------------------------- 1 | OAuthToken 2 | *.pyc 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnider3/CloneGits/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnider3/CloneGits/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnider3/CloneGits/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnider3/CloneGits/HEAD/README.md -------------------------------------------------------------------------------- /clonegits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnider3/CloneGits/HEAD/clonegits.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pygithub 2 | pylint -------------------------------------------------------------------------------- /samplerules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnider3/CloneGits/HEAD/samplerules.json -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnider3/CloneGits/HEAD/tests.py -------------------------------------------------------------------------------- /tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnider3/CloneGits/HEAD/tests.sh --------------------------------------------------------------------------------