feat: add git diff aliases

This commit is contained in:
George Rawlinson 2019-11-05 16:02:18 +13:00
parent 5389285e02
commit 385527ed4c
Signed by: grawlinson
GPG Key ID: E0959FEA8B550539
1 changed files with 4 additions and 0 deletions

View File

@ -40,6 +40,10 @@ if command -v git &> /dev/null; then
# push/pull
alias gp='git push'
alias gl='git pull'
# diff
alias gd='git diff'
alias gdca='git diff --cached'
fi
# pacman