Initialize the Git Repository
git init
View the Repository Status
git status
Stage a Snapshot
git add <file>
Commit the Snapshot
git commit
View a repository’s commit history
git log
Define the author name to be used in all repositories
git config --global user.name "<name>"
Define the author email to be used in all repositories.
git config --global user.email <email>
Basics