From: Jeff King Date: Mon, 5 Jul 2010 12:35:34 +0000 (-0400) Subject: default core.clockskew variable to one day X-Git-Tag: ko-pu~14^2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=79801fddc85cc899d26afe45984c8e0f1349cd8f;p=git.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 --- 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";