Using Git For Pushing Pulling Code - richnadeau/Tech-Journal-SYS265 GitHub Wiki
How to get repository on any computer with git installed
#git clone <https_link>
Git config email + username
#git config --global user.email <email_for_repo>
#git config --global user.name <username_for_repo>
Git Push
#git add <file_name>
{TIP: Use Git add . to add everything that has been changed in directory}
#git commit -m ""
#git push
Git Pull
#git Pull