Johannes Schindelin | c112f68 | 2007-03-04 00:12:06 +0100 | [diff] [blame] | 1 | $ git format-patch --inline --stdout initial..master |
| 2 | From 1bde4ae5f36c8d9abe3a0fce0c6aab3c4a12fe44 Mon Sep 17 00:00:00 2001 |
| 3 | From: A U Thor <author@example.com> |
| 4 | Date: Mon, 26 Jun 2006 00:01:00 +0000 |
Brian Gernhardt | a567fdc | 2008-10-02 16:55:39 -0400 | [diff] [blame] | 5 | Subject: [PATCH 1/3] Second |
Johannes Schindelin | c112f68 | 2007-03-04 00:12:06 +0100 | [diff] [blame] | 6 | MIME-Version: 1.0 |
Junio C Hamano | 33ee4cf | 2007-03-04 16:08:04 -0800 | [diff] [blame] | 7 | Content-Type: multipart/mixed; boundary="------------g-i-t--v-e-r-s-i-o-n" |
Johannes Schindelin | c112f68 | 2007-03-04 00:12:06 +0100 | [diff] [blame] | 8 | |
| 9 | This is a multi-part message in MIME format. |
| 10 | --------------g-i-t--v-e-r-s-i-o-n |
| 11 | Content-Type: text/plain; charset=UTF-8; format=fixed |
| 12 | Content-Transfer-Encoding: 8bit |
| 13 | |
| 14 | |
| 15 | This is the second commit. |
| 16 | --- |
| 17 | dir/sub | 2 ++ |
| 18 | file0 | 3 +++ |
| 19 | file2 | 3 --- |
| 20 | 3 files changed, 5 insertions(+), 3 deletions(-) |
| 21 | delete mode 100644 file2 |
Kevin Ballard | 6b2fbaa | 2008-07-29 22:49:33 -0700 | [diff] [blame] | 22 | |
| 23 | |
Johannes Schindelin | c112f68 | 2007-03-04 00:12:06 +0100 | [diff] [blame] | 24 | --------------g-i-t--v-e-r-s-i-o-n |
Junio C Hamano | 33ee4cf | 2007-03-04 16:08:04 -0800 | [diff] [blame] | 25 | Content-Type: text/x-patch; name="1bde4ae5f36c8d9abe3a0fce0c6aab3c4a12fe44.diff" |
Johannes Schindelin | c112f68 | 2007-03-04 00:12:06 +0100 | [diff] [blame] | 26 | Content-Transfer-Encoding: 8bit |
Junio C Hamano | 33ee4cf | 2007-03-04 16:08:04 -0800 | [diff] [blame] | 27 | Content-Disposition: inline; filename="1bde4ae5f36c8d9abe3a0fce0c6aab3c4a12fe44.diff" |
Johannes Schindelin | c112f68 | 2007-03-04 00:12:06 +0100 | [diff] [blame] | 28 | |
| 29 | diff --git a/dir/sub b/dir/sub |
| 30 | index 35d242b..8422d40 100644 |
| 31 | --- a/dir/sub |
| 32 | +++ b/dir/sub |
| 33 | @@ -1,2 +1,4 @@ |
| 34 | A |
| 35 | B |
| 36 | +C |
| 37 | +D |
| 38 | diff --git a/file0 b/file0 |
| 39 | index 01e79c3..b414108 100644 |
| 40 | --- a/file0 |
| 41 | +++ b/file0 |
| 42 | @@ -1,3 +1,6 @@ |
| 43 | 1 |
| 44 | 2 |
| 45 | 3 |
| 46 | +4 |
| 47 | +5 |
| 48 | +6 |
| 49 | diff --git a/file2 b/file2 |
| 50 | deleted file mode 100644 |
| 51 | index 01e79c3..0000000 |
| 52 | --- a/file2 |
| 53 | +++ /dev/null |
| 54 | @@ -1,3 +0,0 @@ |
| 55 | -1 |
| 56 | -2 |
| 57 | -3 |
| 58 | |
| 59 | --------------g-i-t--v-e-r-s-i-o-n-- |
| 60 | |
| 61 | |
| 62 | |
| 63 | From 9a6d4949b6b76956d9d5e26f2791ec2ceff5fdc0 Mon Sep 17 00:00:00 2001 |
| 64 | From: A U Thor <author@example.com> |
| 65 | Date: Mon, 26 Jun 2006 00:02:00 +0000 |
Brian Gernhardt | a567fdc | 2008-10-02 16:55:39 -0400 | [diff] [blame] | 66 | Subject: [PATCH 2/3] Third |
Johannes Schindelin | c112f68 | 2007-03-04 00:12:06 +0100 | [diff] [blame] | 67 | MIME-Version: 1.0 |
Junio C Hamano | 33ee4cf | 2007-03-04 16:08:04 -0800 | [diff] [blame] | 68 | Content-Type: multipart/mixed; boundary="------------g-i-t--v-e-r-s-i-o-n" |
Johannes Schindelin | c112f68 | 2007-03-04 00:12:06 +0100 | [diff] [blame] | 69 | |
| 70 | This is a multi-part message in MIME format. |
| 71 | --------------g-i-t--v-e-r-s-i-o-n |
| 72 | Content-Type: text/plain; charset=UTF-8; format=fixed |
| 73 | Content-Transfer-Encoding: 8bit |
| 74 | |
| 75 | --- |
| 76 | dir/sub | 2 ++ |
| 77 | file1 | 3 +++ |
| 78 | 2 files changed, 5 insertions(+), 0 deletions(-) |
| 79 | create mode 100644 file1 |
Kevin Ballard | 6b2fbaa | 2008-07-29 22:49:33 -0700 | [diff] [blame] | 80 | |
| 81 | |
Johannes Schindelin | c112f68 | 2007-03-04 00:12:06 +0100 | [diff] [blame] | 82 | --------------g-i-t--v-e-r-s-i-o-n |
Junio C Hamano | 33ee4cf | 2007-03-04 16:08:04 -0800 | [diff] [blame] | 83 | Content-Type: text/x-patch; name="9a6d4949b6b76956d9d5e26f2791ec2ceff5fdc0.diff" |
Johannes Schindelin | c112f68 | 2007-03-04 00:12:06 +0100 | [diff] [blame] | 84 | Content-Transfer-Encoding: 8bit |
Junio C Hamano | 33ee4cf | 2007-03-04 16:08:04 -0800 | [diff] [blame] | 85 | Content-Disposition: inline; filename="9a6d4949b6b76956d9d5e26f2791ec2ceff5fdc0.diff" |
Johannes Schindelin | c112f68 | 2007-03-04 00:12:06 +0100 | [diff] [blame] | 86 | |
| 87 | diff --git a/dir/sub b/dir/sub |
| 88 | index 8422d40..cead32e 100644 |
| 89 | --- a/dir/sub |
| 90 | +++ b/dir/sub |
| 91 | @@ -2,3 +2,5 @@ A |
| 92 | B |
| 93 | C |
| 94 | D |
| 95 | +E |
| 96 | +F |
| 97 | diff --git a/file1 b/file1 |
| 98 | new file mode 100644 |
| 99 | index 0000000..b1e6722 |
| 100 | --- /dev/null |
| 101 | +++ b/file1 |
| 102 | @@ -0,0 +1,3 @@ |
| 103 | +A |
| 104 | +B |
| 105 | +C |
| 106 | |
| 107 | --------------g-i-t--v-e-r-s-i-o-n-- |
| 108 | |
| 109 | |
| 110 | |
| 111 | From c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a Mon Sep 17 00:00:00 2001 |
| 112 | From: A U Thor <author@example.com> |
| 113 | Date: Mon, 26 Jun 2006 00:03:00 +0000 |
Brian Gernhardt | a567fdc | 2008-10-02 16:55:39 -0400 | [diff] [blame] | 114 | Subject: [PATCH 3/3] Side |
Johannes Schindelin | c112f68 | 2007-03-04 00:12:06 +0100 | [diff] [blame] | 115 | MIME-Version: 1.0 |
Junio C Hamano | 33ee4cf | 2007-03-04 16:08:04 -0800 | [diff] [blame] | 116 | Content-Type: multipart/mixed; boundary="------------g-i-t--v-e-r-s-i-o-n" |
Johannes Schindelin | c112f68 | 2007-03-04 00:12:06 +0100 | [diff] [blame] | 117 | |
| 118 | This is a multi-part message in MIME format. |
| 119 | --------------g-i-t--v-e-r-s-i-o-n |
| 120 | Content-Type: text/plain; charset=UTF-8; format=fixed |
| 121 | Content-Transfer-Encoding: 8bit |
| 122 | |
| 123 | --- |
| 124 | dir/sub | 2 ++ |
| 125 | file0 | 3 +++ |
| 126 | file3 | 4 ++++ |
| 127 | 3 files changed, 9 insertions(+), 0 deletions(-) |
| 128 | create mode 100644 file3 |
Kevin Ballard | 6b2fbaa | 2008-07-29 22:49:33 -0700 | [diff] [blame] | 129 | |
| 130 | |
Johannes Schindelin | c112f68 | 2007-03-04 00:12:06 +0100 | [diff] [blame] | 131 | --------------g-i-t--v-e-r-s-i-o-n |
Junio C Hamano | 33ee4cf | 2007-03-04 16:08:04 -0800 | [diff] [blame] | 132 | Content-Type: text/x-patch; name="c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a.diff" |
Johannes Schindelin | c112f68 | 2007-03-04 00:12:06 +0100 | [diff] [blame] | 133 | Content-Transfer-Encoding: 8bit |
Junio C Hamano | 33ee4cf | 2007-03-04 16:08:04 -0800 | [diff] [blame] | 134 | Content-Disposition: inline; filename="c7a2ab9e8eac7b117442a607d5a9b3950ae34d5a.diff" |
Johannes Schindelin | c112f68 | 2007-03-04 00:12:06 +0100 | [diff] [blame] | 135 | |
| 136 | diff --git a/dir/sub b/dir/sub |
| 137 | index 35d242b..7289e35 100644 |
| 138 | --- a/dir/sub |
| 139 | +++ b/dir/sub |
| 140 | @@ -1,2 +1,4 @@ |
| 141 | A |
| 142 | B |
| 143 | +1 |
| 144 | +2 |
| 145 | diff --git a/file0 b/file0 |
| 146 | index 01e79c3..f4615da 100644 |
| 147 | --- a/file0 |
| 148 | +++ b/file0 |
| 149 | @@ -1,3 +1,6 @@ |
| 150 | 1 |
| 151 | 2 |
| 152 | 3 |
| 153 | +A |
| 154 | +B |
| 155 | +C |
| 156 | diff --git a/file3 b/file3 |
| 157 | new file mode 100644 |
| 158 | index 0000000..7289e35 |
| 159 | --- /dev/null |
| 160 | +++ b/file3 |
| 161 | @@ -0,0 +1,4 @@ |
| 162 | +A |
| 163 | +B |
| 164 | +1 |
| 165 | +2 |
| 166 | |
| 167 | --------------g-i-t--v-e-r-s-i-o-n-- |
| 168 | |
| 169 | |
| 170 | $ |