Rui Lourenço: 20211639
click in code and copy the https link open a terminal on the folder you want to store the project git clone "link"
python -m venv env
pip install requirements.txt
pip freeze > requirements.txt
git pull : copies from a remote directory git fetch : copies changed files from remote directory without replacing the one you changed
git commit : tell git what files to send git push : send commited files to remote branch
git config --global user.name "Your Name" git config --global user.email "[email protected]"