From: Jeff King Date: Sat, 11 Jun 2011 19:04:10 +0000 (+0000) Subject: default core.clockskew variable to one day X-Git-Tag: v1.7.7-rc0~72^2~2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/de9f14e26a179462b3d4ed9de64ba7dd9fdbfa02 default core.clockskew variable to one day This is the slop value used by name-rev, so presumably is a reasonable default. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano Signed-off-by: Ævar Arnfjörð Bjarmason Signed-off-by: Junio C Hamano --- diff --git a/builtin/tag.c b/builtin/tag.c index 72140b3986..e468696691 100644 --- a/builtin/tag.c +++ b/builtin/tag.c @@ -25,7 +25,7 @@ static const char * const git_tag_usage[] = { static char signingkey[1000]; -static int core_clock_skew = -1; +static int core_clock_skew = 86400; struct tag_filter { const char *pattern;