Automatically exclude merge commits when recalling.

This commit is contained in:
Jon Gartman 2017-01-30 16:34:23 -08:00
parent e2a24fa8b3
commit 5950fd8ba7

View file

@ -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'