Github version control

Patrick Chirdon
Dec 11, 2021

I don’t like using github that much. I would usually just dump my code and programs on it, but when you work with a team, there are protocols and you do not want to over write other peoples’ code. I always forget the sequence, so I will post it for my future reference.

git init

git checkout -b add pfs8

git status

git add front/* -f

git add app/queries.py

git add app endpoints/survival.py

--

--