A Python based Git clone that allows creating repos, commiting, and pushing.
There is an included requirements.txt
file containing the required modules for this project.
To install, use the following command:
$ python3 -m pip install -r requirements.txt
You should now have the following installed:
- virtualenv
- wheel
- setuptools
- twine
- click>=8.1.7
- Create the virtual envirnment and activate it
virtualenv venv
source venv/bin/activate
- Install the tool in the virtual environment
python setup.py develop
- Verify with the hello command
pygit hello -n Johnny
pygit hello -n {name}
pygit init {new-repo-folder-name}
in-progress- Creates a new folder and a child
.git
directory
- Creates a new folder and a child
Python 3.11.5