git init [repo-directory]
git add [filename]
git add .
git add -A
git status
git commit
git commit -m "Commit message"
git commit -a -m "Commit message"
git log
git log --oneline
git log -p
git diff
git fetch && git checkout [branch_name]
git tag v1.2
git tag -a v1.3 -m "Example message"
git show v1.2
git tag
git tag -a v1.2 7dfeb03
git push origin [tagname]