Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2020-04-29 01:50:02 +0300
committerJunio C Hamano <gitster@pobox.com>2020-04-29 01:50:02 +0300
commit25b336421f7393f54bada27f60658fdfe7270215 (patch)
treea23f287b4758d3d49f1d4aeb30ba0748b0a4201c /builtin/commit-graph.c
parentcc908dbc76adea39b2756c1091016e929c66689d (diff)
parentb09b785c785c93d9e26f4fc754116c24ea02bf3c (diff)
Merge branch 'ds/commit-graph-expiry-fix'
"git commit-graph write --expire-time=<timestamp>" did not use the given timestamp correctly, which has been corrected. * ds/commit-graph-expiry-fix: commit-graph: fix buggy --expire-time option
Diffstat (limited to 'builtin/commit-graph.c')
-rw-r--r--builtin/commit-graph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/commit-graph.c b/builtin/commit-graph.c
index d1ab6625f63..03a8331e2b6 100644
--- a/builtin/commit-graph.c
+++ b/builtin/commit-graph.c
@@ -143,7 +143,7 @@ static int graph_write(int argc, const char **argv)
OPT_INTEGER(0, "size-multiple", &split_opts.size_multiple,
N_("maximum ratio between two levels of a split commit-graph")),
OPT_EXPIRY_DATE(0, "expire-time", &split_opts.expire_time,
- N_("maximum number of commits in a non-base split commit-graph")),
+ N_("only expire files older than a given date-time")),
OPT_END(),
};