Documentation / git-format-patch.txton commit Fix Documentation/everyday.txt: Junio's workflow (53bcf78)
   1git-format-patch(1)
   2===================
   3
   4NAME
   5----
   6git-format-patch - Prepare patches for e-mail submission
   7
   8
   9SYNOPSIS
  10--------
  11[verse]
  12'git-format-patch' [-n | -k] [-o <dir> | --stdout] [--attach]
  13                   [-s | --signoff] [--diff-options] [--start-number <n>]
  14                   <since>[..<until>]
  15
  16DESCRIPTION
  17-----------
  18
  19Prepare each commit between <since> and <until> with its patch in
  20one file per commit, formatted to resemble UNIX mailbox format.
  21If ..<until> is not specified, the head of the current working
  22tree is implied.
  23
  24The output of this command is convenient for e-mail submission or
  25for use with gitlink:git-am[1].
  26
  27Each output file is numbered sequentially from 1, and uses the
  28first line of the commit message (massaged for pathname safety) as
  29the filename. The names of the output files are printed to standard
  30output, unless the --stdout option is specified.
  31
  32If -o is specified, output files are created in <dir>.  Otherwise
  33they are created in the current working directory.
  34
  35If -n is specified, instead of "[PATCH] Subject", the first line
  36is formatted as "[PATCH n/m] Subject".
  37
  38
  39OPTIONS
  40-------
  41-o|--output-directory <dir>::
  42        Use <dir> to store the resulting files, instead of the
  43        current working directory. This option is ignored if
  44        --stdout is specified.
  45
  46-n|--numbered::
  47        Name output in '[PATCH n/m]' format.
  48
  49--start-number <n>::
  50        Start numbering the patches at <n> instead of 1.
  51
  52-k|--keep-subject::
  53        Do not strip/add '[PATCH]' from the first line of the
  54        commit log message.
  55
  56-s|--signoff::
  57        Add `Signed-off-by:` line to the commit message, using
  58        the committer identity of yourself.
  59
  60--stdout::
  61        Print all commits to the standard output in mbox format,
  62        instead of creating a file for each one.
  63
  64--attach::
  65        Create attachments instead of inlining patches.
  66
  67
  68CONFIGURATION
  69-------------
  70You can specify extra mail header lines to be added to each
  71message in the repository configuration as follows:
  72
  73[format]
  74        headers = "Organization: git-foo\n"
  75
  76
  77EXAMPLES
  78--------
  79
  80git-format-patch -k --stdout R1..R2 | git-am -3 -k::
  81        Extract commits between revisions R1 and R2, and apply
  82        them on top of the current branch using `git-am` to
  83        cherry-pick them.
  84
  85git-format-patch origin::
  86        Extract all commits which are in the current branch but
  87        not in the origin branch.  For each commit a separate file
  88        is created in the current directory.
  89
  90git-format-patch -M -B origin::
  91        The same as the previous one.  Additionally, it detects
  92        and handles renames and complete rewrites intelligently to
  93        produce a renaming patch.  A renaming patch reduces the
  94        amount of text output, and generally makes it easier to
  95        review it.  Note that the "patch" program does not
  96        understand renaming patches, so use it only when you know
  97        the recipient uses git to apply your patch.
  98
  99
 100See Also
 101--------
 102gitlink:git-am[1], gitlink:git-send-email[1]
 103
 104
 105Author
 106------
 107Written by Junio C Hamano <junkio@cox.net>
 108
 109Documentation
 110--------------
 111Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
 112
 113GIT
 114---
 115Part of the gitlink:git[7] suite
 116