[] git bash [] github account [] create a repo [] git add . | filename [] git commit -m "message" [] git status [] git log [] git checkout -b branchname [] git push -u origin branchname [] git merge branchName || git pull origin branchName [] git branch [] git branch -d branchName
[] git push -f [] git add -p [] git branch -m "name" [] git commit --amend [] git stash [] git stash list [] git stash drop [] git stash pop, apply [] git stash push -m ""
[] git reset --hard commitHash [] git reset --soft commitHash [] git reflog [] git bisect [] git reset --soft HEAD^1 [] git rebase [] git rebase -i