From 8f969737ed0b361e4bef893156ebae1d76e22116 Mon Sep 17 00:00:00 2001 From: Joe Groocock Date: Sun, 15 Sep 2019 11:30:00 +0100 Subject: [PATCH] aliases: show full message/stat in gd/gsh/glg --- aliases | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aliases b/aliases index 5be2bee..fb70442 100644 --- a/aliases +++ b/aliases @@ -151,10 +151,10 @@ alias gpsuom="git push --set-upstream origin master" alias gpall="git remote | xargs -L1 git push" alias gl="git pull --rebase" alias glp="gl && gp" -alias gd="git diff" -alias gds="git diff --staged" -alias gsh="git show" -alias glg="git log --stat --color" +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 grst="git reset"