- Run command
git clone https://github.com/ASE-Group-23/ASE-1-Project.git
and change into the project folder - Create a virtual environment
env
in the repository (use virtualenv, etc) - Install the requirements
- Activate virtual environment
To create virtual environment and install requirements run following commands
virtualenv env
pip install -r requirements.txt
To activate the environment use following commands: Window:
.\env\Scripts\activate
Ubuntu/Linux
source env/bin/activate
git checkout -b <branch-name>
branch-name : can be your name
For Pushing Changes
git push -u origin <branch-name>
After making any changes, follow these steps before pushing to the repo.
- git add .
- git commit -m "commit msg"
- git pull
- git push