]> git.ipfire.org Git - thirdparty/git.git/commitdiff
log: respect date_mode_explicit with --format:%gd
authorJeff King <peff@peff.net>
Fri, 4 May 2012 05:25:18 +0000 (01:25 -0400)
committerJunio C Hamano <gitster@pobox.com>
Fri, 4 May 2012 16:39:14 +0000 (09:39 -0700)
When we show a reflog selector (e.g., via "git log -g"), we
perform some DWIM magic: while we normally show the entry's
index (e.g., HEAD@{1}), if the user has given us a date
with "--date", then we show a date-based select (e.g.,
HEAD@{yesterday}).

However, we don't want to trigger this magic if the
alternate date format we got was from the "log.date"
configuration; that is not sufficiently strong context for
us to invoke this particular magic. To fix this, commit
f4ea32f (improve reflog date/number heuristic, 2009-09-24)
introduced a "date_mode_explicit" flag in rev_info. This
flag is set only when we see a "--date" option on the
command line, and we a vanilla date to the reflog code if
the date was not explicit.

Later, commit 8f8f547 (Introduce new pretty formats %g[sdD]
for reflog information, 2009-10-19) added another way to
show selectors, and it did not respect the date_mode_explicit
flag from f4ea32f.

This patch propagates the date_mode_explicit flag to the
pretty-print code, which can then use it to pass the
appropriate date field to the reflog code. This brings the
behavior of "%gd" in line with the other formats, and means
that its output is independent of any user configuration.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/rev-list.c
commit.h
log-tree.c
pretty.c
t/t1411-reflog-show.sh

index 56727e8c1d9d87fe3e3bf3919ba86d27d0735758..fe0fb20d2d9069766929eddf1dbce4c88fa217e0 100644 (file)
@@ -104,6 +104,7 @@ static void show_commit(struct commit *commit, void *data)
                struct pretty_print_context ctx = {0};
                ctx.abbrev = revs->abbrev;
                ctx.date_mode = revs->date_mode;
+               ctx.date_mode_explicit = revs->date_mode_explicit;
                ctx.fmt = revs->commit_format;
                pretty_print_commit(&ctx, commit, &buf);
                if (revs->graph) {
index 14f6a5a2ed91e2176cce4543798774f88a8628b1..048f31ed93603a3df4ca4e36cf1fd12a2198a858 100644 (file)
--- a/commit.h
+++ b/commit.h
@@ -82,6 +82,7 @@ struct pretty_print_context {
        const char *after_subject;
        int preserve_subject;
        enum date_mode date_mode;
+       unsigned date_mode_explicit:1;
        int need_8bit_cte;
        int show_notes;
        struct reflog_walk_info *reflog_info;
index 24c295ea1dc91180b9685299f48812593162bdfe..5f9e59a10cc697681c58eb8e2b6a31febb08e657 100644 (file)
@@ -511,6 +511,7 @@ void show_log(struct rev_info *opt)
        if (ctx.need_8bit_cte >= 0)
                ctx.need_8bit_cte = has_non_ascii(opt->add_signoff);
        ctx.date_mode = opt->date_mode;
+       ctx.date_mode_explicit = opt->date_mode_explicit;
        ctx.abbrev = opt->diffopt.abbrev;
        ctx.after_subject = extra_headers;
        ctx.preserve_subject = opt->preserve_subject;
index f45eb54e4c99b8d67e4aa85f9a6218ea7a560592..efd62e8ae7891f42910d49ed1c9538844721762c 100644 (file)
--- a/pretty.c
+++ b/pretty.c
@@ -956,7 +956,9 @@ static size_t format_commit_one(struct strbuf *sb, const char *placeholder,
                        if (c->pretty_ctx->reflog_info)
                                get_reflog_selector(sb,
                                                    c->pretty_ctx->reflog_info,
-                                                   c->pretty_ctx->date_mode,
+                                                   c->pretty_ctx->date_mode_explicit ?
+                                                     c->pretty_ctx->date_mode :
+                                                     DATE_NORMAL,
                                                    (placeholder[1] == 'd'));
                        return 2;
                case 's':       /* reflog message */
index 4706f4c50cbecf656098ae70d0a8b438a5a26c3a..88247f874e55161caea35797490bfdc9df71b148 100755 (executable)
@@ -121,7 +121,7 @@ test_expect_success 'log.date does not invoke "--date" magic (oneline)' '
 cat >expect <<'EOF'
 HEAD@{0}
 EOF
-test_expect_failure 'log.date does not invoke "--date" magic (format=%gd)' '
+test_expect_success 'log.date does not invoke "--date" magic (format=%gd)' '
        test_config log.date raw &&
        git log -g -1 --format=%gd >actual &&
        test_cmp expect actual