bitnaughts / bitnaughts.unity

🎮 Unity Project
2 stars 0 forks source link

Adding install script to pull/extract all repos from the Bitnaughts org. #2

Closed epochdv closed 5 years ago

epochdv commented 5 years ago

Script can be executed by running python init.py in the home directory of the repo.

Mutilar commented 5 years ago

The init.py script is at an acceptable state for what it does. But, using the script, I realize it is the wrong approach. It currently downloads the modules and unzips them in the proper locations. However, we do not want to download the repositories, we want to clone them.

What this means is the init.py script does not have .git files in each module. Without git integration, it will not facilitate collaboration.

We want a script that properly clones repositories.

See: https://stackoverflow.com/questions/2472552/python-way-to-clone-a-git-repository and: https://github.com/gitpython-developers/GitPython