1
0
mirror of https://github.com/frebib/dotfiles.git synced 2024-06-14 12:57:23 +00:00

aliases: make git-log/git-show aliases consistent

Show patches and stats in appropriate places
This commit is contained in:
Joe Groocock 2020-03-21 21:15:00 +00:00
parent d251f3e23a
commit 2598df0f17
Signed by: frebib
GPG Key ID: E0B16BEACFBB6A86

View File

@ -155,9 +155,10 @@ alias gl="git pull --rebase"
alias glp="gl && gp"
alias gd="git diff --patch-with-stat"
alias gds="gd --staged"
alias gsh="git show --format=full --patch-with-stat"
alias glg="git log --format=full --stat --color"
alias glog="git log --oneline --decorate --color --graph"
alias gsh="git show --format=fuller --patch-with-stat"
alias glg="git log --color --format=fuller --stat"
alias glgp="git log --color --format=fuller --patch-with-stat"
alias glog="git log --color --oneline --decorate --graph"
alias grst="git reset"
alias gundo="git reset @~1"