Code

default core.clockskew variable to one day
authorJeff King <peff@peff.net>
Mon, 5 Jul 2010 12:35:34 +0000 (08:35 -0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 5 Jul 2010 19:12:21 +0000 (12:12 -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>
commit.c

index c849b50797e09734d53e5dce1bbc5483f5dbe092..4cbe756eb75a2eece45e90d0a5aa6d4d7f65d591 100644 (file)
--- 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";