git-format-patch -3
[git/jrn.git] / Documentation / git-format-patch.txt
blob811c6e2e77fda7b06ae0816a0beb56dff77161a6
1 git-format-patch(1)
2 ===================
4 NAME
5 ----
6 git-format-patch - Prepare patches for e-mail submission
9 SYNOPSIS
10 --------
11 [verse]
12 'git-format-patch' [-n | -k] [-o <dir> | --stdout] [--attach] [--thread]
13                    [-s | --signoff] [--diff-options] [--start-number <n>]
14                    [--in-reply-to=Message-Id] [--suffix=.<sfx>]
15                    <since>[..<until>]
17 DESCRIPTION
18 -----------
20 Prepare each commit between <since> and <until> with its patch in
21 one file per commit, formatted to resemble UNIX mailbox format.
22 If ..<until> is not specified, the head of the current working
23 tree is implied.  For a more complete list of ways to spell
24 <since> and <until>, see "SPECIFYING REVISIONS" section in
25 gitlink:git-rev-parse[1].
27 The output of this command is convenient for e-mail submission or
28 for use with gitlink:git-am[1].
30 Each output file is numbered sequentially from 1, and uses the
31 first line of the commit message (massaged for pathname safety) as
32 the filename. The names of the output files are printed to standard
33 output, unless the --stdout option is specified.
35 If -o is specified, output files are created in <dir>.  Otherwise
36 they are created in the current working directory.
38 If -n is specified, instead of "[PATCH] Subject", the first line
39 is formatted as "[PATCH n/m] Subject".
41 If given --thread, git-format-patch will generate In-Reply-To and
42 References headers to make the second and subsequent patch mails appear
43 as replies to the first mail; this also generates a Message-Id header to
44 reference.
46 OPTIONS
47 -------
48 -o|--output-directory <dir>::
49         Use <dir> to store the resulting files, instead of the
50         current working directory.
52 -n|--numbered::
53         Name output in '[PATCH n/m]' format.
55 --start-number <n>::
56         Start numbering the patches at <n> instead of 1.
58 -k|--keep-subject::
59         Do not strip/add '[PATCH]' from the first line of the
60         commit log message.
62 -s|--signoff::
63         Add `Signed-off-by:` line to the commit message, using
64         the committer identity of yourself.
66 --stdout::
67         Print all commits to the standard output in mbox format,
68         instead of creating a file for each one.
70 --attach::
71         Create attachments instead of inlining patches.
73 --thread::
74         Add In-Reply-To and References headers to make the second and
75         subsequent mails appear as replies to the first.  Also generates
76         the Message-Id header to reference.
78 --in-reply-to=Message-Id::
79         Make the first mail (or all the mails with --no-thread) appear as a
80         reply to the given Message-Id, which avoids breaking threads to
81         provide a new patch series.
83 --suffix=.<sfx>::
84         Instead of using `.txt` as the suffix for generated
85         filenames, use specifed suffix.  A common alternative is
86         `--suffix=.patch`.
88 Note that you would need to include the leading dot `.` if you
89 want a filename like `0001-description-of-my-change.patch`, and
90 the first letter does not have to be a dot.  Leaving it empty would
91 not add any suffix.
93 CONFIGURATION
94 -------------
95 You can specify extra mail header lines to be added to each
96 message in the repository configuration as follows:
98 [format]
99         headers = "Organization: git-foo\n"
101 You can specify default suffix used:
103 [format]
104         suffix = .patch
107 EXAMPLES
108 --------
110 git-format-patch -k --stdout R1..R2 | git-am -3 -k::
111         Extract commits between revisions R1 and R2, and apply
112         them on top of the current branch using `git-am` to
113         cherry-pick them.
115 git-format-patch origin::
116         Extract all commits which are in the current branch but
117         not in the origin branch.  For each commit a separate file
118         is created in the current directory.
120 git-format-patch -M -B origin::
121         The same as the previous one.  Additionally, it detects
122         and handles renames and complete rewrites intelligently to
123         produce a renaming patch.  A renaming patch reduces the
124         amount of text output, and generally makes it easier to
125         review it.  Note that the "patch" program does not
126         understand renaming patches, so use it only when you know
127         the recipient uses git to apply your patch.
129 git-format-patch -3::
130         Extract three topmost commits from the current branch
131         and format them as e-mailable patches.
133 See Also
134 --------
135 gitlink:git-am[1], gitlink:git-send-email[1]
138 Author
139 ------
140 Written by Junio C Hamano <junkio@cox.net>
142 Documentation
143 --------------
144 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
148 Part of the gitlink:git[7] suite