Git Notes
Checking the status of the repository
git status
Staging Files for Commit
Add a file
git add
file
Add all files, unstaged and untracked
git add .
Fix the previous commit message
git commit --amend
Tagging
Tag a Commit
git tag
tag name