git config --global alias.s status
git config --list
git config --global user.name "Your Name"
git config --global user.email "name@mail.com"
git config --global pull.rebase true
git config --global push.autoSetupRemote true
git remote prune origin
git branch -D name-of-the-branch-to-delete
git branch -a
git diff --name-status branch_one..branch_two
git diff branch_one..branch_two
git config core.sshcommand "ssh -i ~/.ssh/your_private_key -o IdentitiesOnly=yes -F /dev/null"
git reset --hard HEAD^
git push origin -f