From e5727cf4e92b3be2bd76eb02a0cba17b3c5551ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ph=E1=BA=A1m=20Ng=E1=BB=8Dc=20Th=E1=BA=AFng?= Date: Wed, 19 Sep 2018 10:17:16 +0700 Subject: [PATCH] fix: author not show fullname --- git-quick-stats | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/git-quick-stats b/git-quick-stats index 9a1e25c..60647b8 100755 --- a/git-quick-stats +++ b/git-quick-stats @@ -97,7 +97,8 @@ function detailedGitStats() { } /^Author:/ { - author = $2 " " $3 + $1 = "" + author = $0 commits[author] += 1 commits["total"] += 1 }