2005-09-08 02:26:23 +02:00
|
|
|
git-format-patch(1)
|
|
|
|
===================
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2006-03-09 17:24:50 +01:00
|
|
|
git-format-patch - Prepare patches for e-mail submission
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2005-12-31 18:37:15 +01:00
|
|
|
[verse]
|
2006-07-15 02:49:04 +02:00
|
|
|
'git-format-patch' [-n | -k] [-o <dir> | --stdout] [--attach] [--thread]
|
2006-05-31 16:14:08 +02:00
|
|
|
[-s | --signoff] [--diff-options] [--start-number <n>]
|
2007-01-17 20:12:03 +01:00
|
|
|
[--in-reply-to=Message-Id] [--suffix=.<sfx>]
|
2006-05-31 16:14:08 +02:00
|
|
|
<since>[..<until>]
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2006-05-31 16:14:08 +02:00
|
|
|
|
|
|
|
Prepare each commit between <since> and <until> with its patch in
|
|
|
|
one file per commit, formatted to resemble UNIX mailbox format.
|
|
|
|
If ..<until> is not specified, the head of the current working
|
2007-01-18 03:08:09 +01:00
|
|
|
tree is implied. For a more complete list of ways to spell
|
|
|
|
<since> and <until>, see "SPECIFYING REVISIONS" section in
|
|
|
|
gitlink:git-rev-parse[1].
|
2006-05-31 16:14:08 +02:00
|
|
|
|
|
|
|
The output of this command is convenient for e-mail submission or
|
|
|
|
for use with gitlink:git-am[1].
|
2005-09-08 08:04:52 +02:00
|
|
|
|
2006-02-07 10:37:54 +01:00
|
|
|
Each output file is numbered sequentially from 1, and uses the
|
2006-05-31 16:14:08 +02:00
|
|
|
first line of the commit message (massaged for pathname safety) as
|
|
|
|
the filename. The names of the output files are printed to standard
|
|
|
|
output, unless the --stdout option is specified.
|
2006-02-07 10:37:54 +01:00
|
|
|
|
2006-05-31 16:14:08 +02:00
|
|
|
If -o is specified, output files are created in <dir>. Otherwise
|
|
|
|
they are created in the current working directory.
|
2005-09-08 08:04:52 +02:00
|
|
|
|
2006-05-31 16:14:08 +02:00
|
|
|
If -n is specified, instead of "[PATCH] Subject", the first line
|
|
|
|
is formatted as "[PATCH n/m] Subject".
|
2005-09-08 08:04:52 +02:00
|
|
|
|
2006-07-15 02:49:04 +02:00
|
|
|
If given --thread, git-format-patch will generate In-Reply-To and
|
|
|
|
References headers to make the second and subsequent patch mails appear
|
|
|
|
as replies to the first mail; this also generates a Message-Id header to
|
|
|
|
reference.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
2005-12-09 00:28:05 +01:00
|
|
|
-o|--output-directory <dir>::
|
2005-09-08 08:04:52 +02:00
|
|
|
Use <dir> to store the resulting files, instead of the
|
2006-06-06 17:46:23 +02:00
|
|
|
current working directory.
|
2005-09-08 08:04:52 +02:00
|
|
|
|
2005-12-09 00:28:05 +01:00
|
|
|
-n|--numbered::
|
2005-09-08 08:04:52 +02:00
|
|
|
Name output in '[PATCH n/m]' format.
|
|
|
|
|
2006-05-31 16:14:08 +02:00
|
|
|
--start-number <n>::
|
|
|
|
Start numbering the patches at <n> instead of 1.
|
|
|
|
|
2005-12-09 00:28:05 +01:00
|
|
|
-k|--keep-subject::
|
2005-09-08 08:04:52 +02:00
|
|
|
Do not strip/add '[PATCH]' from the first line of the
|
|
|
|
commit log message.
|
|
|
|
|
2005-12-09 00:28:05 +01:00
|
|
|
-s|--signoff::
|
|
|
|
Add `Signed-off-by:` line to the commit message, using
|
|
|
|
the committer identity of yourself.
|
|
|
|
|
2005-10-06 23:25:52 +02:00
|
|
|
--stdout::
|
2006-05-31 16:14:08 +02:00
|
|
|
Print all commits to the standard output in mbox format,
|
|
|
|
instead of creating a file for each one.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
2006-03-10 05:47:24 +01:00
|
|
|
--attach::
|
|
|
|
Create attachments instead of inlining patches.
|
|
|
|
|
2006-07-15 02:49:04 +02:00
|
|
|
--thread::
|
|
|
|
Add In-Reply-To and References headers to make the second and
|
|
|
|
subsequent mails appear as replies to the first. Also generates
|
|
|
|
the Message-Id header to reference.
|
2005-11-05 11:55:18 +01:00
|
|
|
|
2006-07-15 02:49:08 +02:00
|
|
|
--in-reply-to=Message-Id::
|
|
|
|
Make the first mail (or all the mails with --no-thread) appear as a
|
|
|
|
reply to the given Message-Id, which avoids breaking threads to
|
|
|
|
provide a new patch series.
|
|
|
|
|
2007-01-17 20:12:03 +01:00
|
|
|
--suffix=.<sfx>::
|
|
|
|
Instead of using `.txt` as the suffix for generated
|
|
|
|
filenames, use specifed suffix. A common alternative is
|
|
|
|
`--suffix=.patch`.
|
|
|
|
+
|
|
|
|
Note that you would need to include the leading dot `.` if you
|
|
|
|
want a filename like `0001-description-of-my-change.patch`, and
|
|
|
|
the first letter does not have to be a dot. Leaving it empty would
|
|
|
|
not add any suffix.
|
|
|
|
|
2006-03-10 05:47:59 +01:00
|
|
|
CONFIGURATION
|
|
|
|
-------------
|
|
|
|
You can specify extra mail header lines to be added to each
|
|
|
|
message in the repository configuration as follows:
|
|
|
|
|
|
|
|
[format]
|
|
|
|
headers = "Organization: git-foo\n"
|
|
|
|
|
2007-01-17 20:12:03 +01:00
|
|
|
You can specify default suffix used:
|
|
|
|
|
|
|
|
[format]
|
|
|
|
suffix = .patch
|
|
|
|
|
2006-03-10 05:47:59 +01:00
|
|
|
|
2005-11-05 11:55:18 +01:00
|
|
|
EXAMPLES
|
|
|
|
--------
|
|
|
|
|
|
|
|
git-format-patch -k --stdout R1..R2 | git-am -3 -k::
|
|
|
|
Extract commits between revisions R1 and R2, and apply
|
|
|
|
them on top of the current branch using `git-am` to
|
|
|
|
cherry-pick them.
|
|
|
|
|
|
|
|
git-format-patch origin::
|
2006-05-31 16:14:08 +02:00
|
|
|
Extract all commits which are in the current branch but
|
|
|
|
not in the origin branch. For each commit a separate file
|
|
|
|
is created in the current directory.
|
2005-11-05 11:55:18 +01:00
|
|
|
|
2005-12-13 10:54:15 +01:00
|
|
|
git-format-patch -M -B origin::
|
2006-05-31 16:14:08 +02:00
|
|
|
The same as the previous one. Additionally, it detects
|
|
|
|
and handles renames and complete rewrites intelligently to
|
|
|
|
produce a renaming patch. A renaming patch reduces the
|
|
|
|
amount of text output, and generally makes it easier to
|
|
|
|
review it. Note that the "patch" program does not
|
|
|
|
understand renaming patches, so use it only when you know
|
|
|
|
the recipient uses git to apply your patch.
|
2005-12-13 10:54:15 +01:00
|
|
|
|
2007-01-17 22:35:13 +01:00
|
|
|
git-format-patch -3::
|
|
|
|
Extract three topmost commits from the current branch
|
|
|
|
and format them as e-mailable patches.
|
2005-11-05 11:55:18 +01:00
|
|
|
|
|
|
|
See Also
|
|
|
|
--------
|
2005-12-31 18:37:15 +01:00
|
|
|
gitlink:git-am[1], gitlink:git-send-email[1]
|
2005-11-05 11:55:18 +01:00
|
|
|
|
|
|
|
|
2005-08-23 10:49:47 +02:00
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Junio C Hamano <junkio@cox.net>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2005-09-19 12:10:51 +02:00
|
|
|
Part of the gitlink:git[7] suite
|
2005-08-23 10:49:47 +02:00
|
|
|
|