Git
Git is the de facto standard version control system (VCS).
Initiate a git directory
git init
Save username and password
git config credential.helper store
Basic git push workflow
git add .
git commit -m "<description>
git push origin master
Git is the de facto standard version control system (VCS).
git init
git config credential.helper store
git add .
git commit -m "<description>
git push origin master