Git shortcuts
If you type full git commands all the time, you're making life unnecessarily hard for yourself. Add these aliases to your shell config file, eg .bashrc
or .zshrc
. I'm a longtime user of zshell.
alias cherry="git cherry-pick"
alias ga="git add"
alias gb="git branch --sort=-committerdate"
alias gca="git commit --amend"
alias gch="git checkout"
alias gcm="git commit -m"
alias gcnm="git commit -n -m"
alias gd="git diff"
alias gl="git log"
alias gr="git reset"
alias gs="git status"
Posted by Abraham