From 5950fd8ba7c8841c18b9354dcceec32d8347251c Mon Sep 17 00:00:00 2001 From: Jon Gartman Date: Mon, 30 Jan 2017 16:34:23 -0800 Subject: [PATCH] Automatically exclude merge commits when recalling. --- git-recall | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-recall b/git-recall index 3d3cfcd..9ac7731 100644 --- a/git-recall +++ b/git-recall @@ -116,7 +116,7 @@ GIT_FORMAT="%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%a # Log command. GIT_LOG="git log --pretty=format:'${GIT_FORMAT}' --author \"$AUTHOR\" - --since \"$SINCE\" --abbrev-commit" + --since \"$SINCE\" --abbrev-commit --no-merges" # Change temporary the IFS to store GIT_LOG's output into an array. IFS=$'\n'