- git status: show current status of repo
- git add: add files to be commited
- git commit -m 'message here ': commit changes with meaningful message
- create new repo on github
- want to add the remote to our project on computer (git remote add origin ssh link here)
--------------------------- repeat this often ---------------
- try to break up problems into simplier problems (maybe this on paper, or comments in code, or rubber ducky method)
- code one these broken up problems
- test and make sure that chunk is complete
- git add (files that you changed related chunk of work)
- git commit -m 'message describes that chunck of work'
- repeat
------------------------- with github ----------------
- git push origin master (when a couple chicks or done, or when teammate needs changes)
- git pull origin master (when grabbing changes)