- Run command
git clone https://github.com/ASE-Group-23/ASE-1-Project.gitand change into the project folder - Create a virtual environment
envin 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.txtTo activate the environment use following commands: Window:
.\env\Scripts\activateUbuntu/Linux
source env/bin/activategit 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