From ef74d791027b0af6366cb7c45a66832458419362 Mon Sep 17 00:00:00 2001 From: Tom Ice Date: Fri, 29 Jan 2021 19:31:29 -0500 Subject: [PATCH] Change default date to be when git was first invented * The current default date is set to UNIX Epoch time. However, it seems some people are possibly having issues with date/time formats within their OSes. This commit attempts to fix issue #115 when the default date may be too old and cause no output to show --- git-quick-stats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-quick-stats b/git-quick-stats index 1170c31..1db2cca 100755 --- a/git-quick-stats +++ b/git-quick-stats @@ -14,7 +14,7 @@ _since=${_GIT_SINCE:-} if [[ -n "${_since}" ]]; then _since="--since=$_since" else - _since="--since=1970-01-01" + _since="--since=2005-04-07" fi # End of git log date. Respects all git datetime formats