Skip to content

Commit

Permalink
Merge branch 'jm/format-patch-no-auto-n-when-k-is-given' into maint
Browse files Browse the repository at this point in the history
* jm/format-patch-no-auto-n-when-k-is-given:
  format-patch let -k override a config-specified format.numbered
  • Loading branch information
gitster committed May 26, 2009
2 parents 5c44cc9 ca6b91d commit 597a178
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
14 changes: 13 additions & 1 deletion builtin-log.c
Original file line number Diff line number Diff line change
Expand Up @@ -755,6 755,7 @@ int cmd_format_patch(int argc, const char **argv, const char *prefix)
int cover_letter = 0;
int boundary_count = 0;
int no_binary_diff = 0;
int numbered_cmdline_opt = 0;
struct commit *origin = NULL, *head = NULL;
const char *in_reply_to = NULL;
struct patch_ids ids;
Expand Down Expand Up @@ -786,8 787,10 @@ int cmd_format_patch(int argc, const char **argv, const char *prefix)
if (!strcmp(argv[i], "--stdout"))
use_stdout = 1;
else if (!strcmp(argv[i], "-n") ||
!strcmp(argv[i], "--numbered"))
!strcmp(argv[i], "--numbered")) {
numbered = 1;
numbered_cmdline_opt = 1;
}
else if (!strcmp(argv[i], "-N") ||
!strcmp(argv[i], "--no-numbered")) {
numbered = 0;
Expand Down Expand Up @@ -918,6 921,15 @@ int cmd_format_patch(int argc, const char **argv, const char *prefix)

if (start_number < 0)
start_number = 1;

/*
* If numbered is set solely due to format.numbered in config,
* and it would conflict with --keep-subject (-k) from the
* command line, reset "numbered".
*/
if (numbered && keep_subject && !numbered_cmdline_opt)
numbered = 0;

if (numbered && keep_subject)
die ("-n and -k are mutually exclusive.");
if (keep_subject && subject_prefix)
Expand Down
7 changes: 7 additions & 0 deletions t/t4021-format-patch-numbered.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 86,13 @@ test_expect_success 'format.numbered && --no-numbered' '
'

test_expect_success 'format.numbered && --keep-subject' '
git format-patch --keep-subject --stdout HEAD^ >patch4a &&
grep "^Subject: Third" patch4a
'

test_expect_success 'format.numbered = auto' '
git config format.numbered auto
Expand Down

0 comments on commit 597a178

Please sign in to comment.