diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-04-06 09:42:23 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-04-06 09:42:23 +0200 |
commit | 87d2062b3984af5347519c38877b99bce06e6e8d (patch) | |
tree | 888152f9e778342f6fa0fc71c7f601fd702916eb /revision.h | |
parent | user-manual: the name of the hash function is SHA-1, not sha1 (diff) | |
parent | format_sanitized_subject: Don't trim past initial length of strbuf (diff) | |
download | git-87d2062b3984af5347519c38877b99bce06e6e8d.tar.xz git-87d2062b3984af5347519c38877b99bce06e6e8d.zip |
Merge branch 'sb/format-patch-patchname'
* sb/format-patch-patchname:
format_sanitized_subject: Don't trim past initial length of strbuf
log-tree: fix patch filename computation in "git format-patch"
format-patch: --numbered-files and --stdout aren't mutually exclusive
format-patch: --attach/inline uses filename instead of SHA1
format-patch: move get_patch_filename() into log-tree
format-patch: pass a commit to reopen_stdout()
format-patch: construct patch filename in one function
pretty.c: add %f format specifier to format_commit_message()
Diffstat (limited to 'revision.h')
-rw-r--r-- | revision.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/revision.h b/revision.h index 6e98b71b49..5adfc91405 100644 --- a/revision.h +++ b/revision.h @@ -85,6 +85,8 @@ struct rev_info { struct log_info *loginfo; int nr, total; const char *mime_boundary; + const char *patch_suffix; + int numbered_files; char *message_id; struct string_list *ref_message_ids; const char *add_signoff; |