Git commands

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 commands