diff options
author | Jeff King <peff@peff.net> | 2011-06-11 19:04:10 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-06-11 22:32:30 -0700 |
commit | de9f14e26a179462b3d4ed9de64ba7dd9fdbfa02 (patch) | |
tree | 0be344d8340b0fb4143d7d0ce3c50576694c2ccb /builtin | |
parent | 0c811a7a6f93691604d48b1c13a6868c89971528 (diff) | |
download | git-de9f14e26a179462b3d4ed9de64ba7dd9fdbfa02.tar.gz |
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 <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>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/tag.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/tag.c b/builtin/tag.c index 72140b3986..e468696691 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; |