diff options
author | Junio C Hamano <gitster@pobox.com> | 2022-09-09 21:02:25 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-09-09 21:02:25 +0200 |
commit | 0e2a4764edea38c4aad95af246d6a7648a7d5e2d (patch) | |
tree | 01f278caec2b8d7d037abeb37f34968d484d5d97 /revision.h | |
parent | Merge branch 'js/range-diff-with-pathspec' (diff) | |
parent | format-patch: learn format.forceInBodyFrom configuration variable (diff) | |
download | git-0e2a4764edea38c4aad95af246d6a7648a7d5e2d.tar.xz git-0e2a4764edea38c4aad95af246d6a7648a7d5e2d.zip |
Merge branch 'jc/format-patch-force-in-body-from'
"git format-patch --from=<ident>" can be told to add an in-body
"From:" line even for commits that are authored by the given
<ident> with "--force-in-body-from"option.
* jc/format-patch-force-in-body-from:
format-patch: learn format.forceInBodyFrom configuration variable
format-patch: allow forcing the use of in-body From: header
pretty: separate out the logic to decide the use of in-body from
Diffstat (limited to 'revision.h')
-rw-r--r-- | revision.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/revision.h b/revision.h index 61a9b1316b..afe1b77985 100644 --- a/revision.h +++ b/revision.h @@ -229,6 +229,7 @@ struct rev_info { missing_newline:1, date_mode_explicit:1, preserve_subject:1, + force_in_body_from:1, encode_email_headers:1, include_header:1; unsigned int disable_stdin:1; |