From 1bd80816634220682b3da7bdcd3badf7ddc7f557 Mon Sep 17 00:00:00 2001 From: Joe Groocock Date: Sat, 31 Jul 2021 00:04:30 +0000 Subject: [PATCH] aliases: git: attempt to elide merge commits in glg In theory this should give a much cleaner commit log without all of the noise from merge commits in poorly maintained repos. Signed-off-by: Joe Groocock --- aliases | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aliases b/aliases index 682d705..7a5c8a4 100644 --- a/aliases +++ b/aliases @@ -160,8 +160,8 @@ alias gd="git diff --patch-with-stat" alias gdni="gd --no-index" alias gds="gd --staged" 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 glg="git log --color --format=fuller --stat --no-merges --graph" +alias glgp="git log --color --format=fuller --patch-with-stat --no-merges --graph" alias glog="git log --color --oneline --decorate --graph" alias grst="git reset"