From 79801fddc85cc899d26afe45984c8e0f1349cd8f Mon Sep 17 00:00:00 2001 From: Jeff King Date: Mon, 5 Jul 2010 08:35:34 -0400 Subject: [PATCH] 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 --- commit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commit.c b/commit.c index c849b5079..4cbe756eb 100644 --- a/commit.c +++ b/commit.c @@ -7,7 +7,7 @@ #include "revision.h" #include "notes.h" -int core_clock_skew = -1; +int core_clock_skew = 86400; int save_commit_buffer = 1; const char *commit_type = "commit"; -- 2.30.2