summaryrefslogtreecommitdiffstats
path: root/git-format-patch.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2019-02-05 15:33:56 -0800
committerJunio C Hamano <gitster@pobox.com>2019-02-05 15:33:56 -0800
commit2567b326fac6961a6fc6075ad2f22a744252f2f3 (patch)
tree2e4c640f64f1f8f00b992e414a2fd316aea798d4 /git-format-patch.txt
parentcf7310088e7328f8aa7ea2c5de767ef9499b5d78 (diff)
downloadgit-htmldocs-2567b326fac6961a6fc6075ad2f22a744252f2f3.tar.gz
Autogenerated HTML docs for v2.20.1-519-g8fedd
Diffstat (limited to 'git-format-patch.txt')
-rw-r--r--git-format-patch.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/git-format-patch.txt b/git-format-patch.txt
index 27304428a..1af85d404 100644
--- a/git-format-patch.txt
+++ b/git-format-patch.txt
@@ -504,9 +504,9 @@ Toggle it to make sure it is set to `false`. Also, search for
"mailnews.wraplength" and set the value to 0.
3. Disable the use of format=flowed:
-Edit..Preferences..Advanced..Config Editor. Search for
-"mailnews.send_plaintext_flowed".
-Toggle it to make sure it is set to `false`.
+ Edit..Preferences..Advanced..Config Editor. Search for
+ "mailnews.send_plaintext_flowed".
+ Toggle it to make sure it is set to `false`.
After that is done, you should be able to compose email as you
otherwise would (cut + paste, 'git format-patch' | 'git imap-send', etc),
@@ -629,14 +629,14 @@ EXAMPLES
--------
* Extract commits between revisions R1 and R2, and apply them on top of
-the current branch using 'git am' to cherry-pick them:
+ the current branch using 'git am' to cherry-pick them:
+
------------
$ git format-patch -k --stdout R1..R2 | git am -3 -k
------------
* Extract all commits which are in the current branch but not in the
-origin branch:
+ origin branch:
+
------------
$ git format-patch origin
@@ -645,7 +645,7 @@ $ git format-patch origin
For each commit a separate file is created in the current directory.
* Extract all commits that lead to 'origin' since the inception of the
-project:
+ project:
+
------------
$ git format-patch --root origin
@@ -664,7 +664,7 @@ Note that non-Git "patch" programs won't understand renaming patches, so
use it only when you know the recipient uses Git to apply your patch.
* Extract three topmost commits from the current branch and format them
-as e-mailable patches:
+ as e-mailable patches:
+
------------
$ git format-patch -3