mirror of
https://github.com/git/git.git
synced 2024-11-28 12:34:08 +08:00
Merge branch 'jk/maint-quiet-is-synonym-to-s-in-log' into maint-1.7.11
* jk/maint-quiet-is-synonym-to-s-in-log: log: fix --quiet synonym for -s
This commit is contained in:
commit
19ece726e1
@ -108,9 +108,9 @@ static void cmd_log_init_finish(int argc, const char **argv, const char *prefix,
|
|||||||
PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN |
|
PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN |
|
||||||
PARSE_OPT_KEEP_DASHDASH);
|
PARSE_OPT_KEEP_DASHDASH);
|
||||||
|
|
||||||
argc = setup_revisions(argc, argv, rev, opt);
|
|
||||||
if (quiet)
|
if (quiet)
|
||||||
rev->diffopt.output_format |= DIFF_FORMAT_NO_OUTPUT;
|
rev->diffopt.output_format |= DIFF_FORMAT_NO_OUTPUT;
|
||||||
|
argc = setup_revisions(argc, argv, rev, opt);
|
||||||
|
|
||||||
/* Any arguments at this point are not recognized */
|
/* Any arguments at this point are not recognized */
|
||||||
if (argc > 1)
|
if (argc > 1)
|
||||||
|
@ -108,4 +108,16 @@ test_expect_success 'showing range' '
|
|||||||
test_cmp expect actual.filtered
|
test_cmp expect actual.filtered
|
||||||
'
|
'
|
||||||
|
|
||||||
|
test_expect_success '-s suppresses diff' '
|
||||||
|
echo main3 >expect &&
|
||||||
|
git show -s --format=%s main3 >actual &&
|
||||||
|
test_cmp expect actual
|
||||||
|
'
|
||||||
|
|
||||||
|
test_expect_success '--quiet suppresses diff' '
|
||||||
|
echo main3 >expect &&
|
||||||
|
git show --quiet --format=%s main3 >actual &&
|
||||||
|
test_cmp expect actual
|
||||||
|
'
|
||||||
|
|
||||||
test_done
|
test_done
|
||||||
|
Loading…
Reference in New Issue
Block a user