diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-04-28 15:50:02 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-04-28 15:50:02 -0700 |
commit | 25b336421f7393f54bada27f60658fdfe7270215 (patch) | |
tree | a23f287b4758d3d49f1d4aeb30ba0748b0a4201c /builtin/commit-graph.c | |
parent | Merge branch 'dr/doc-recurse-submodules' (diff) | |
parent | commit-graph: fix buggy --expire-time option (diff) | |
download | tgif-25b336421f7393f54bada27f60658fdfe7270215.tar.xz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/commit-graph.c b/builtin/commit-graph.c index d1ab6625f6..03a8331e2b 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(), }; |