Git shortcuts that save me 30 minutes a day:

alias gs='git status'
alias gc='git commit -m'
alias gp='git push'
alias gl='git log --oneline -10'
alias gd='git diff'
alias gco='git checkout'
alias gb='git branch'

Put these in your .bashrc/.zshrc and never type a full git command again.

What are your favorite aliases? 👇

#webdev #git #developer #productivity