├── .gitignore ├── .travis.yml ├── README.md ├── cnrv-clone.py ├── create_projects.py ├── push.py ├── requirements.txt ├── search_projects.py └── sync.sh /.gitignore: -------------------------------------------------------------------------------- 1 | token 2 | *push.sh 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/clone-helpers/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/clone-helpers/HEAD/README.md -------------------------------------------------------------------------------- /cnrv-clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/clone-helpers/HEAD/cnrv-clone.py -------------------------------------------------------------------------------- /create_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/clone-helpers/HEAD/create_projects.py -------------------------------------------------------------------------------- /push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/clone-helpers/HEAD/push.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | gitpython 2 | -------------------------------------------------------------------------------- /search_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/clone-helpers/HEAD/search_projects.py -------------------------------------------------------------------------------- /sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/clone-helpers/HEAD/sync.sh --------------------------------------------------------------------------------