NYP Semester 2, group3 appdev project
Clone the repository
git clone https://github.com/caffeine-addictt/ReFiber
cd ReFiber
code .py|python|python3 -m venv venv
venv\Scripts\activate # Windows
source venv/bin/activate # Linux/Macpip install -r requirements.txtpip install pytest
pytest -s -vgit commit -m "<commit message>" # Saves it local repository(branch)
git push # Saves it to remote repositorygit checkout main # Changes your from your local branch to local main branch
git pull origin main # Pull and merge changes from the remote main branch into your local main branch
git checkout <your branch name>
git pull origin <your branch name>