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: http://git.osdn.net/view?a=commitdiff_plain;h=de9f14e26a179462b3d4ed9de64ba7dd9fdbfa02;p=git-core%2Fgit.git 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 72140b398..e46869669 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;