For large commits, it is nice to have some eye candy for the rename detection. This makes sense for "show", which is showing a single diff, since the progress reporting will be shown before the pager shows any output. We don't want to do the same for "log", though, because the progress would be interspersed with the various commits. Signed-off-by: Jeff King <peff@xxxxxxxx> --- builtin/log.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/builtin/log.c b/builtin/log.c index 707fd57..cf68130 100644 --- a/builtin/log.c +++ b/builtin/log.c @@ -416,6 +416,7 @@ int cmd_show(int argc, const char **argv, const char *prefix) rev.diff = 1; rev.always_show_header = 1; rev.no_walk = 1; + rev.diffopt.show_rename_progress = 1; memset(&opt, 0, sizeof(opt)); opt.def = "HEAD"; opt.tweak = show_rev_tweak_rev; -- 1.7.4.39.ge4c30 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html