Snippets for git command line
git checkout [NAME_OF_THE_BRANCH]
git rebase [NAME_OF_THE_BRANCH]
git push -f
git log
Checks the history of a file
git log -p [FILE_NAME]
Search for a word in Vim and press n
to go directly to the next occurrence
/[WORD_NAME]
Fetch all branches and prune remote branches
git fetch --all --prune
git branch -d branch_name
git stash save --keep-index --include-untracked
Show all the configs for this git repo
git config --list