format-patch: --attach/inline uses filename instead of SHA1
Currently when format-patch is used with --attach or --inline the patch attachment has the SHA1 of the commit for its filename. This replaces the SHA1 with the filename used by format-patch when outputting to files. Fix tests relying on the SHA1 output and add a test showing how the --suffix option affects the attachment filename output. Signed-off-by: Stephen Boyd <bebarino@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
6fa8e6278b
commit
108dab2811
@ -607,7 +607,6 @@ static void make_cover_letter(struct rev_info *rev, int use_stdout,
|
|||||||
int nr, struct commit **list, struct commit *head)
|
int nr, struct commit **list, struct commit *head)
|
||||||
{
|
{
|
||||||
const char *committer;
|
const char *committer;
|
||||||
char *head_sha1;
|
|
||||||
const char *subject_start = NULL;
|
const char *subject_start = NULL;
|
||||||
const char *body = "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n";
|
const char *body = "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n";
|
||||||
const char *msg;
|
const char *msg;
|
||||||
@ -624,7 +623,6 @@ static void make_cover_letter(struct rev_info *rev, int use_stdout,
|
|||||||
die("Cover letter needs email format");
|
die("Cover letter needs email format");
|
||||||
|
|
||||||
committer = git_committer_info(0);
|
committer = git_committer_info(0);
|
||||||
head_sha1 = sha1_to_hex(head->object.sha1);
|
|
||||||
|
|
||||||
if (!numbered_files) {
|
if (!numbered_files) {
|
||||||
/*
|
/*
|
||||||
@ -639,7 +637,7 @@ static void make_cover_letter(struct rev_info *rev, int use_stdout,
|
|||||||
"author %s\n"
|
"author %s\n"
|
||||||
"committer %s\n\n"
|
"committer %s\n\n"
|
||||||
"cover letter\n",
|
"cover letter\n",
|
||||||
head_sha1, committer, committer);
|
sha1_to_hex(head->object.sha1), committer, committer);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!use_stdout && reopen_stdout(commit, rev))
|
if (!use_stdout && reopen_stdout(commit, rev))
|
||||||
@ -651,7 +649,7 @@ static void make_cover_letter(struct rev_info *rev, int use_stdout,
|
|||||||
free(commit);
|
free(commit);
|
||||||
}
|
}
|
||||||
|
|
||||||
log_write_email_headers(rev, head_sha1, &subject_start, &extra_headers,
|
log_write_email_headers(rev, head, &subject_start, &extra_headers,
|
||||||
&need_8bit_cte);
|
&need_8bit_cte);
|
||||||
|
|
||||||
msg = body;
|
msg = body;
|
||||||
@ -1011,6 +1009,8 @@ int cmd_format_patch(int argc, const char **argv, const char *prefix)
|
|||||||
const char *msgid = clean_message_id(in_reply_to);
|
const char *msgid = clean_message_id(in_reply_to);
|
||||||
string_list_append(msgid, rev.ref_message_ids);
|
string_list_append(msgid, rev.ref_message_ids);
|
||||||
}
|
}
|
||||||
|
rev.numbered_files = numbered_files;
|
||||||
|
rev.patch_suffix = fmt_patch_suffix;
|
||||||
if (cover_letter) {
|
if (cover_letter) {
|
||||||
if (thread)
|
if (thread)
|
||||||
gen_message_id(&rev, "cover");
|
gen_message_id(&rev, "cover");
|
||||||
|
18
log-tree.c
18
log-tree.c
@ -201,13 +201,14 @@ void get_patch_filename(struct commit *commit, int nr, const char *suffix,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void log_write_email_headers(struct rev_info *opt, const char *name,
|
void log_write_email_headers(struct rev_info *opt, struct commit *commit,
|
||||||
const char **subject_p,
|
const char **subject_p,
|
||||||
const char **extra_headers_p,
|
const char **extra_headers_p,
|
||||||
int *need_8bit_cte_p)
|
int *need_8bit_cte_p)
|
||||||
{
|
{
|
||||||
const char *subject = NULL;
|
const char *subject = NULL;
|
||||||
const char *extra_headers = opt->extra_headers;
|
const char *extra_headers = opt->extra_headers;
|
||||||
|
const char *name = sha1_to_hex(commit->object.sha1);
|
||||||
|
|
||||||
*need_8bit_cte_p = 0; /* unknown */
|
*need_8bit_cte_p = 0; /* unknown */
|
||||||
if (opt->total > 0) {
|
if (opt->total > 0) {
|
||||||
@ -246,6 +247,7 @@ void log_write_email_headers(struct rev_info *opt, const char *name,
|
|||||||
if (opt->mime_boundary) {
|
if (opt->mime_boundary) {
|
||||||
static char subject_buffer[1024];
|
static char subject_buffer[1024];
|
||||||
static char buffer[1024];
|
static char buffer[1024];
|
||||||
|
struct strbuf filename = STRBUF_INIT;
|
||||||
*need_8bit_cte_p = -1; /* NEVER */
|
*need_8bit_cte_p = -1; /* NEVER */
|
||||||
snprintf(subject_buffer, sizeof(subject_buffer) - 1,
|
snprintf(subject_buffer, sizeof(subject_buffer) - 1,
|
||||||
"%s"
|
"%s"
|
||||||
@ -264,18 +266,21 @@ void log_write_email_headers(struct rev_info *opt, const char *name,
|
|||||||
mime_boundary_leader, opt->mime_boundary);
|
mime_boundary_leader, opt->mime_boundary);
|
||||||
extra_headers = subject_buffer;
|
extra_headers = subject_buffer;
|
||||||
|
|
||||||
|
get_patch_filename(opt->numbered_files ? NULL : commit, opt->nr,
|
||||||
|
opt->patch_suffix, &filename);
|
||||||
snprintf(buffer, sizeof(buffer) - 1,
|
snprintf(buffer, sizeof(buffer) - 1,
|
||||||
"\n--%s%s\n"
|
"\n--%s%s\n"
|
||||||
"Content-Type: text/x-patch;"
|
"Content-Type: text/x-patch;"
|
||||||
" name=\"%s.diff\"\n"
|
" name=\"%s\"\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Content-Disposition: %s;"
|
"Content-Disposition: %s;"
|
||||||
" filename=\"%s.diff\"\n\n",
|
" filename=\"%s\"\n\n",
|
||||||
mime_boundary_leader, opt->mime_boundary,
|
mime_boundary_leader, opt->mime_boundary,
|
||||||
name,
|
filename.buf,
|
||||||
opt->no_inline ? "attachment" : "inline",
|
opt->no_inline ? "attachment" : "inline",
|
||||||
name);
|
filename.buf);
|
||||||
opt->diffopt.stat_sep = buffer;
|
opt->diffopt.stat_sep = buffer;
|
||||||
|
strbuf_release(&filename);
|
||||||
}
|
}
|
||||||
*subject_p = subject;
|
*subject_p = subject;
|
||||||
*extra_headers_p = extra_headers;
|
*extra_headers_p = extra_headers;
|
||||||
@ -355,8 +360,7 @@ void show_log(struct rev_info *opt)
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
if (opt->commit_format == CMIT_FMT_EMAIL) {
|
if (opt->commit_format == CMIT_FMT_EMAIL) {
|
||||||
log_write_email_headers(opt, sha1_to_hex(commit->object.sha1),
|
log_write_email_headers(opt, commit, &subject, &extra_headers,
|
||||||
&subject, &extra_headers,
|
|
||||||
&need_8bit_cte);
|
&need_8bit_cte);
|
||||||
} else if (opt->commit_format != CMIT_FMT_USERFORMAT) {
|
} else if (opt->commit_format != CMIT_FMT_USERFORMAT) {
|
||||||
fputs(diff_get_color_opt(&opt->diffopt, DIFF_COMMIT), stdout);
|
fputs(diff_get_color_opt(&opt->diffopt, DIFF_COMMIT), stdout);
|
||||||
|
@ -13,7 +13,7 @@ int log_tree_commit(struct rev_info *, struct commit *);
|
|||||||
int log_tree_opt_parse(struct rev_info *, const char **, int);
|
int log_tree_opt_parse(struct rev_info *, const char **, int);
|
||||||
void show_log(struct rev_info *opt);
|
void show_log(struct rev_info *opt);
|
||||||
void show_decorations(struct rev_info *opt, struct commit *commit);
|
void show_decorations(struct rev_info *opt, struct commit *commit);
|
||||||
void log_write_email_headers(struct rev_info *opt, const char *name,
|
void log_write_email_headers(struct rev_info *opt, struct commit *commit,
|
||||||
const char **subject_p,
|
const char **subject_p,
|
||||||
const char **extra_headers_p,
|
const char **extra_headers_p,
|
||||||
int *need_8bit_cte_p);
|
int *need_8bit_cte_p);
|
||||||
|
@ -86,6 +86,8 @@ struct rev_info {
|
|||||||
struct log_info *loginfo;
|
struct log_info *loginfo;
|
||||||
int nr, total;
|
int nr, total;
|
||||||
const char *mime_boundary;
|
const char *mime_boundary;
|
||||||
|
const char *patch_suffix;
|
||||||
|
int numbered_files;
|
||||||
char *message_id;
|
char *message_id;
|
||||||
struct string_list *ref_message_ids;
|
struct string_list *ref_message_ids;
|
||||||
const char *add_signoff;
|
const char *add_signoff;
|
||||||
|
@ -246,6 +246,7 @@ format-patch --stdout initial..master
|
|||||||
format-patch --stdout --no-numbered initial..master
|
format-patch --stdout --no-numbered initial..master
|
||||||
format-patch --stdout --numbered initial..master
|
format-patch --stdout --numbered initial..master
|
||||||
format-patch --attach --stdout initial..side
|
format-patch --attach --stdout initial..side
|
||||||
|
format-patch --attach --stdout --suffix=.diff initial..side
|
||||||
format-patch --attach --stdout initial..master^
|
format-patch --attach --stdout initial..master^
|
||||||
format-patch --attach --stdout initial..master
|
format-patch --attach --stdout initial..master
|
||||||
format-patch --inline --stdout initial..side
|
format-patch --inline --stdout initial..side
|
||||||
|
@ -0,0 +1,61 @@
|
|||||||
|
$ git format-patch --attach --stdout --suffix=.diff initial..side
|
||||||
|
From c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a Mon Sep 17 00:00:00 2001
|
||||||
|
From: A U Thor <author@example.com>
|
||||||
|
Date: Mon, 26 Jun 2006 00:03:00 +0000
|
||||||
|
Subject: [PATCH] Side
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: multipart/mixed; boundary="------------g-i-t--v-e-r-s-i-o-n"
|
||||||
|
|
||||||
|
This is a multi-part message in MIME format.
|
||||||
|
--------------g-i-t--v-e-r-s-i-o-n
|
||||||
|
Content-Type: text/plain; charset=UTF-8; format=fixed
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
---
|
||||||
|
dir/sub | 2 ++
|
||||||
|
file0 | 3 +++
|
||||||
|
file3 | 4 ++++
|
||||||
|
3 files changed, 9 insertions(+), 0 deletions(-)
|
||||||
|
create mode 100644 file3
|
||||||
|
|
||||||
|
|
||||||
|
--------------g-i-t--v-e-r-s-i-o-n
|
||||||
|
Content-Type: text/x-patch; name="0001-Side.diff"
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
Content-Disposition: attachment; filename="0001-Side.diff"
|
||||||
|
|
||||||
|
diff --git a/dir/sub b/dir/sub
|
||||||
|
index 35d242b..7289e35 100644
|
||||||
|
--- a/dir/sub
|
||||||
|
+++ b/dir/sub
|
||||||
|
@@ -1,2 +1,4 @@
|
||||||
|
A
|
||||||
|
B
|
||||||
|
+1
|
||||||
|
+2
|
||||||
|
diff --git a/file0 b/file0
|
||||||
|
index 01e79c3..f4615da 100644
|
||||||
|
--- a/file0
|
||||||
|
+++ b/file0
|
||||||
|
@@ -1,3 +1,6 @@
|
||||||
|
1
|
||||||
|
2
|
||||||
|
3
|
||||||
|
+A
|
||||||
|
+B
|
||||||
|
+C
|
||||||
|
diff --git a/file3 b/file3
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000..7289e35
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/file3
|
||||||
|
@@ -0,0 +1,4 @@
|
||||||
|
+A
|
||||||
|
+B
|
||||||
|
+1
|
||||||
|
+2
|
||||||
|
|
||||||
|
--------------g-i-t--v-e-r-s-i-o-n--
|
||||||
|
|
||||||
|
|
||||||
|
$
|
@ -22,9 +22,9 @@ This is the second commit.
|
|||||||
|
|
||||||
|
|
||||||
--------------g-i-t--v-e-r-s-i-o-n
|
--------------g-i-t--v-e-r-s-i-o-n
|
||||||
Content-Type: text/x-patch; name="1bde4ae5f36c8d9abe3a0fce0c6aab3c4a12fe44.diff"
|
Content-Type: text/x-patch; name="0001-Second.patch"
|
||||||
Content-Transfer-Encoding: 8bit
|
Content-Transfer-Encoding: 8bit
|
||||||
Content-Disposition: attachment; filename="1bde4ae5f36c8d9abe3a0fce0c6aab3c4a12fe44.diff"
|
Content-Disposition: attachment; filename="0001-Second.patch"
|
||||||
|
|
||||||
diff --git a/dir/sub b/dir/sub
|
diff --git a/dir/sub b/dir/sub
|
||||||
index 35d242b..8422d40 100644
|
index 35d242b..8422d40 100644
|
||||||
@ -80,9 +80,9 @@ Content-Transfer-Encoding: 8bit
|
|||||||
|
|
||||||
|
|
||||||
--------------g-i-t--v-e-r-s-i-o-n
|
--------------g-i-t--v-e-r-s-i-o-n
|
||||||
Content-Type: text/x-patch; name="9a6d4949b6b76956d9d5e26f2791ec2ceff5fdc0.diff"
|
Content-Type: text/x-patch; name="0002-Third.patch"
|
||||||
Content-Transfer-Encoding: 8bit
|
Content-Transfer-Encoding: 8bit
|
||||||
Content-Disposition: attachment; filename="9a6d4949b6b76956d9d5e26f2791ec2ceff5fdc0.diff"
|
Content-Disposition: attachment; filename="0002-Third.patch"
|
||||||
|
|
||||||
diff --git a/dir/sub b/dir/sub
|
diff --git a/dir/sub b/dir/sub
|
||||||
index 8422d40..cead32e 100644
|
index 8422d40..cead32e 100644
|
||||||
@ -129,9 +129,9 @@ Content-Transfer-Encoding: 8bit
|
|||||||
|
|
||||||
|
|
||||||
--------------g-i-t--v-e-r-s-i-o-n
|
--------------g-i-t--v-e-r-s-i-o-n
|
||||||
Content-Type: text/x-patch; name="c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a.diff"
|
Content-Type: text/x-patch; name="0003-Side.patch"
|
||||||
Content-Transfer-Encoding: 8bit
|
Content-Transfer-Encoding: 8bit
|
||||||
Content-Disposition: attachment; filename="c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a.diff"
|
Content-Disposition: attachment; filename="0003-Side.patch"
|
||||||
|
|
||||||
diff --git a/dir/sub b/dir/sub
|
diff --git a/dir/sub b/dir/sub
|
||||||
index 35d242b..7289e35 100644
|
index 35d242b..7289e35 100644
|
||||||
|
@ -22,9 +22,9 @@ This is the second commit.
|
|||||||
|
|
||||||
|
|
||||||
--------------g-i-t--v-e-r-s-i-o-n
|
--------------g-i-t--v-e-r-s-i-o-n
|
||||||
Content-Type: text/x-patch; name="1bde4ae5f36c8d9abe3a0fce0c6aab3c4a12fe44.diff"
|
Content-Type: text/x-patch; name="0001-Second.patch"
|
||||||
Content-Transfer-Encoding: 8bit
|
Content-Transfer-Encoding: 8bit
|
||||||
Content-Disposition: attachment; filename="1bde4ae5f36c8d9abe3a0fce0c6aab3c4a12fe44.diff"
|
Content-Disposition: attachment; filename="0001-Second.patch"
|
||||||
|
|
||||||
diff --git a/dir/sub b/dir/sub
|
diff --git a/dir/sub b/dir/sub
|
||||||
index 35d242b..8422d40 100644
|
index 35d242b..8422d40 100644
|
||||||
@ -80,9 +80,9 @@ Content-Transfer-Encoding: 8bit
|
|||||||
|
|
||||||
|
|
||||||
--------------g-i-t--v-e-r-s-i-o-n
|
--------------g-i-t--v-e-r-s-i-o-n
|
||||||
Content-Type: text/x-patch; name="9a6d4949b6b76956d9d5e26f2791ec2ceff5fdc0.diff"
|
Content-Type: text/x-patch; name="0002-Third.patch"
|
||||||
Content-Transfer-Encoding: 8bit
|
Content-Transfer-Encoding: 8bit
|
||||||
Content-Disposition: attachment; filename="9a6d4949b6b76956d9d5e26f2791ec2ceff5fdc0.diff"
|
Content-Disposition: attachment; filename="0002-Third.patch"
|
||||||
|
|
||||||
diff --git a/dir/sub b/dir/sub
|
diff --git a/dir/sub b/dir/sub
|
||||||
index 8422d40..cead32e 100644
|
index 8422d40..cead32e 100644
|
||||||
|
@ -20,9 +20,9 @@ Content-Transfer-Encoding: 8bit
|
|||||||
|
|
||||||
|
|
||||||
--------------g-i-t--v-e-r-s-i-o-n
|
--------------g-i-t--v-e-r-s-i-o-n
|
||||||
Content-Type: text/x-patch; name="c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a.diff"
|
Content-Type: text/x-patch; name="0001-Side.patch"
|
||||||
Content-Transfer-Encoding: 8bit
|
Content-Transfer-Encoding: 8bit
|
||||||
Content-Disposition: attachment; filename="c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a.diff"
|
Content-Disposition: attachment; filename="0001-Side.patch"
|
||||||
|
|
||||||
diff --git a/dir/sub b/dir/sub
|
diff --git a/dir/sub b/dir/sub
|
||||||
index 35d242b..7289e35 100644
|
index 35d242b..7289e35 100644
|
||||||
|
@ -22,9 +22,9 @@ This is the second commit.
|
|||||||
|
|
||||||
|
|
||||||
--------------g-i-t--v-e-r-s-i-o-n
|
--------------g-i-t--v-e-r-s-i-o-n
|
||||||
Content-Type: text/x-patch; name="1bde4ae5f36c8d9abe3a0fce0c6aab3c4a12fe44.diff"
|
Content-Type: text/x-patch; name="0001-Second.patch"
|
||||||
Content-Transfer-Encoding: 8bit
|
Content-Transfer-Encoding: 8bit
|
||||||
Content-Disposition: inline; filename="1bde4ae5f36c8d9abe3a0fce0c6aab3c4a12fe44.diff"
|
Content-Disposition: inline; filename="0001-Second.patch"
|
||||||
|
|
||||||
diff --git a/dir/sub b/dir/sub
|
diff --git a/dir/sub b/dir/sub
|
||||||
index 35d242b..8422d40 100644
|
index 35d242b..8422d40 100644
|
||||||
@ -80,9 +80,9 @@ Content-Transfer-Encoding: 8bit
|
|||||||
|
|
||||||
|
|
||||||
--------------g-i-t--v-e-r-s-i-o-n
|
--------------g-i-t--v-e-r-s-i-o-n
|
||||||
Content-Type: text/x-patch; name="9a6d4949b6b76956d9d5e26f2791ec2ceff5fdc0.diff"
|
Content-Type: text/x-patch; name="0002-Third.patch"
|
||||||
Content-Transfer-Encoding: 8bit
|
Content-Transfer-Encoding: 8bit
|
||||||
Content-Disposition: inline; filename="9a6d4949b6b76956d9d5e26f2791ec2ceff5fdc0.diff"
|
Content-Disposition: inline; filename="0002-Third.patch"
|
||||||
|
|
||||||
diff --git a/dir/sub b/dir/sub
|
diff --git a/dir/sub b/dir/sub
|
||||||
index 8422d40..cead32e 100644
|
index 8422d40..cead32e 100644
|
||||||
@ -129,9 +129,9 @@ Content-Transfer-Encoding: 8bit
|
|||||||
|
|
||||||
|
|
||||||
--------------g-i-t--v-e-r-s-i-o-n
|
--------------g-i-t--v-e-r-s-i-o-n
|
||||||
Content-Type: text/x-patch; name="c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a.diff"
|
Content-Type: text/x-patch; name="0003-Side.patch"
|
||||||
Content-Transfer-Encoding: 8bit
|
Content-Transfer-Encoding: 8bit
|
||||||
Content-Disposition: inline; filename="c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a.diff"
|
Content-Disposition: inline; filename="0003-Side.patch"
|
||||||
|
|
||||||
diff --git a/dir/sub b/dir/sub
|
diff --git a/dir/sub b/dir/sub
|
||||||
index 35d242b..7289e35 100644
|
index 35d242b..7289e35 100644
|
||||||
|
@ -22,9 +22,9 @@ This is the second commit.
|
|||||||
|
|
||||||
|
|
||||||
--------------g-i-t--v-e-r-s-i-o-n
|
--------------g-i-t--v-e-r-s-i-o-n
|
||||||
Content-Type: text/x-patch; name="1bde4ae5f36c8d9abe3a0fce0c6aab3c4a12fe44.diff"
|
Content-Type: text/x-patch; name="0001-Second.patch"
|
||||||
Content-Transfer-Encoding: 8bit
|
Content-Transfer-Encoding: 8bit
|
||||||
Content-Disposition: inline; filename="1bde4ae5f36c8d9abe3a0fce0c6aab3c4a12fe44.diff"
|
Content-Disposition: inline; filename="0001-Second.patch"
|
||||||
|
|
||||||
diff --git a/dir/sub b/dir/sub
|
diff --git a/dir/sub b/dir/sub
|
||||||
index 35d242b..8422d40 100644
|
index 35d242b..8422d40 100644
|
||||||
@ -80,9 +80,9 @@ Content-Transfer-Encoding: 8bit
|
|||||||
|
|
||||||
|
|
||||||
--------------g-i-t--v-e-r-s-i-o-n
|
--------------g-i-t--v-e-r-s-i-o-n
|
||||||
Content-Type: text/x-patch; name="9a6d4949b6b76956d9d5e26f2791ec2ceff5fdc0.diff"
|
Content-Type: text/x-patch; name="0002-Third.patch"
|
||||||
Content-Transfer-Encoding: 8bit
|
Content-Transfer-Encoding: 8bit
|
||||||
Content-Disposition: inline; filename="9a6d4949b6b76956d9d5e26f2791ec2ceff5fdc0.diff"
|
Content-Disposition: inline; filename="0002-Third.patch"
|
||||||
|
|
||||||
diff --git a/dir/sub b/dir/sub
|
diff --git a/dir/sub b/dir/sub
|
||||||
index 8422d40..cead32e 100644
|
index 8422d40..cead32e 100644
|
||||||
@ -129,9 +129,9 @@ Content-Transfer-Encoding: 8bit
|
|||||||
|
|
||||||
|
|
||||||
--------------g-i-t--v-e-r-s-i-o-n
|
--------------g-i-t--v-e-r-s-i-o-n
|
||||||
Content-Type: text/x-patch; name="c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a.diff"
|
Content-Type: text/x-patch; name="0003-Side.patch"
|
||||||
Content-Transfer-Encoding: 8bit
|
Content-Transfer-Encoding: 8bit
|
||||||
Content-Disposition: inline; filename="c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a.diff"
|
Content-Disposition: inline; filename="0003-Side.patch"
|
||||||
|
|
||||||
diff --git a/dir/sub b/dir/sub
|
diff --git a/dir/sub b/dir/sub
|
||||||
index 35d242b..7289e35 100644
|
index 35d242b..7289e35 100644
|
||||||
|
@ -22,9 +22,9 @@ This is the second commit.
|
|||||||
|
|
||||||
|
|
||||||
--------------g-i-t--v-e-r-s-i-o-n
|
--------------g-i-t--v-e-r-s-i-o-n
|
||||||
Content-Type: text/x-patch; name="1bde4ae5f36c8d9abe3a0fce0c6aab3c4a12fe44.diff"
|
Content-Type: text/x-patch; name="0001-Second.patch"
|
||||||
Content-Transfer-Encoding: 8bit
|
Content-Transfer-Encoding: 8bit
|
||||||
Content-Disposition: inline; filename="1bde4ae5f36c8d9abe3a0fce0c6aab3c4a12fe44.diff"
|
Content-Disposition: inline; filename="0001-Second.patch"
|
||||||
|
|
||||||
diff --git a/dir/sub b/dir/sub
|
diff --git a/dir/sub b/dir/sub
|
||||||
index 35d242b..8422d40 100644
|
index 35d242b..8422d40 100644
|
||||||
@ -80,9 +80,9 @@ Content-Transfer-Encoding: 8bit
|
|||||||
|
|
||||||
|
|
||||||
--------------g-i-t--v-e-r-s-i-o-n
|
--------------g-i-t--v-e-r-s-i-o-n
|
||||||
Content-Type: text/x-patch; name="9a6d4949b6b76956d9d5e26f2791ec2ceff5fdc0.diff"
|
Content-Type: text/x-patch; name="0002-Third.patch"
|
||||||
Content-Transfer-Encoding: 8bit
|
Content-Transfer-Encoding: 8bit
|
||||||
Content-Disposition: inline; filename="9a6d4949b6b76956d9d5e26f2791ec2ceff5fdc0.diff"
|
Content-Disposition: inline; filename="0002-Third.patch"
|
||||||
|
|
||||||
diff --git a/dir/sub b/dir/sub
|
diff --git a/dir/sub b/dir/sub
|
||||||
index 8422d40..cead32e 100644
|
index 8422d40..cead32e 100644
|
||||||
|
@ -22,9 +22,9 @@ This is the second commit.
|
|||||||
|
|
||||||
|
|
||||||
--------------g-i-t--v-e-r-s-i-o-n
|
--------------g-i-t--v-e-r-s-i-o-n
|
||||||
Content-Type: text/x-patch; name="1bde4ae5f36c8d9abe3a0fce0c6aab3c4a12fe44.diff"
|
Content-Type: text/x-patch; name="0001-Second.patch"
|
||||||
Content-Transfer-Encoding: 8bit
|
Content-Transfer-Encoding: 8bit
|
||||||
Content-Disposition: inline; filename="1bde4ae5f36c8d9abe3a0fce0c6aab3c4a12fe44.diff"
|
Content-Disposition: inline; filename="0001-Second.patch"
|
||||||
|
|
||||||
diff --git a/dir/sub b/dir/sub
|
diff --git a/dir/sub b/dir/sub
|
||||||
index 35d242b..8422d40 100644
|
index 35d242b..8422d40 100644
|
||||||
|
@ -20,9 +20,9 @@ Content-Transfer-Encoding: 8bit
|
|||||||
|
|
||||||
|
|
||||||
--------------g-i-t--v-e-r-s-i-o-n
|
--------------g-i-t--v-e-r-s-i-o-n
|
||||||
Content-Type: text/x-patch; name="c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a.diff"
|
Content-Type: text/x-patch; name="0001-Side.patch"
|
||||||
Content-Transfer-Encoding: 8bit
|
Content-Transfer-Encoding: 8bit
|
||||||
Content-Disposition: inline; filename="c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a.diff"
|
Content-Disposition: inline; filename="0001-Side.patch"
|
||||||
|
|
||||||
diff --git a/dir/sub b/dir/sub
|
diff --git a/dir/sub b/dir/sub
|
||||||
index 35d242b..7289e35 100644
|
index 35d242b..7289e35 100644
|
||||||
|
Loading…
x
Reference in New Issue
Block a user