CI

Both hands-on and exercises reside in the same repository: git-mastery/exercises. So before you start to contributing, you should have these setup already:

Setup

  1. Fork the repository: https://github.com/git-mastery/exercises
  2. Clone the fork

     git clone https://github.com/<username>/exercises
    
  3. Setup a virtual environment

     python -m venv venv
    
  4. Activate the virtual environment

     source venv/bin/activate
    

    If you are using Windows, you should run the following instead:

     source venv/Scripts/activate
    
  5. Install all dependencies

     pip install -r requirements.txt
    

Table of contents