From de9f14e26a179462b3d4ed9de64ba7dd9fdbfa02 Mon Sep 17 00:00:00 2001 From: Jeff King Date: Sat, 11 Jun 2011 19:04:10 +0000 Subject: [PATCH] default core.clockskew variable to one day MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- builtin/tag.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.11.4.GIT