From e7f9e58b631e3681d1009e1f4f1b497e1782ddb2 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Wed, 5 Jun 2013 20:59:14 -0400 Subject: [PATCH] git/list will now limit to --first-parent This is similiar to the output you would expect from shortlog. An option will be added in the future. --- git/list | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/list b/git/list index 6202177..87da07d 100755 --- a/git/list +++ b/git/list @@ -21,4 +21,4 @@ # # # add an extra newline to prevent read from getting confused -git log --pretty='format:%H %h %at %f %s' && echo +git log --first-parent --pretty='format:%H %h %at %f %s' && echo