git init
git add "path"
git config --global user.name "name"
git config --global user.email "email"
git commit -m "message"
git status
git status -s
git remote add origin "repository url"
git remote -v
git clone "repository url"
git log
git log --oneline
git reset [--hard] [--soft] [--mixed] head~[number]
rm -rf .git
git branch
git branch -a
git branch -r
git branch branch-name
git switch branch-name
git checkout branch-name
git merge branch-name
git branch -d branch-name
git stash
git stash apply
git stash clear
git clone URL
git branch branch-name
git push -u origin branch-name
git fetch