From 2598df0f17cc7ef3b9e5e72854e0565ff88f177a Mon Sep 17 00:00:00 2001 From: Joe Groocock Date: Sat, 21 Mar 2020 21:15:00 +0000 Subject: [PATCH] aliases: make git-log/git-show aliases consistent Show patches and stats in appropriate places --- aliases | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/aliases b/aliases index 9ac2c88..209a3e3 100644 --- a/aliases +++ b/aliases @@ -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"