TODO Add explanations to all commands
Help
git help comand
man git-comand
git comand --help
Start
git init
git clone url
Commiting
git commit
git commit -m "message"
git commit -a
git commit --amend
Going back to a previous state
git revert idCommit
git reset HEAD file file
git reset --hard
git reset --soft
Conventional Commits
Add and remove files
git add file
git add -i
git rm file
git rm --cached file
git mv file newfile
git clear
Branching
git branch branchname
git branch -d branchname
git checkout branchname
git checkout file
git checkout -- file
rebase
git rebase branchname
git rebase --onto develop-branch previous-branch new-branch
git rebase -i commit
(fav command)
merge
git merge branchname
Handle remotes
git pull
git remote -v
git add remote-name url
git fetch remote-name
git push remote-name branch-name
git remote show remote-name
git remote rm remote-name
git remote rename name newname
Stash
git stash
git stash pop
git stash clear
Tags
git tag
git tag -a tagname -m "tag anotation"
git push origin tagname
git push origin --tags
Status and logs
git status
git log
git log -n number
git log -p diff id1 id2
git log --graph