OSDN Git Service

default core.clockskew variable to one day
authorJeff King <peff@peff.net>
Sat, 11 Jun 2011 19:04:10 +0000 (19:04 +0000)
committerJunio C Hamano <gitster@pobox.com>
Sun, 12 Jun 2011 05:32:30 +0000 (22:32 -0700)
This is the slop value used by name-rev, so presumably is a
reasonable default.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/tag.c

index 72140b3..e468696 100644 (file)
@@ -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;