diff options
| author | Junio C Hamano <gitster@pobox.com> | 2019-10-18 11:40:48 +0900 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2019-10-18 11:40:48 +0900 |
| commit | f1afbb063ff86e40caeaee31146f62c7a3c10c57 (patch) | |
| tree | f0f53736727b23d496cd4b1e27adb11e6d0dc147 /Documentation/git-format-patch.txt | |
| parent | e5fca6b573f9d88f99f611fcbb592bdd46656a9d (diff) | |
| parent | edefc318731f69c3e5354ead9f7505e789562375 (diff) | |
| download | git-f1afbb063ff86e40caeaee31146f62c7a3c10c57.tar.xz | |
Merge branch 'bw/format-patch-o-create-leading-dirs'
"git format-patch -o <outdir>" did an equivalent of "mkdir <outdir>"
not "mkdir -p <outdir>", which is being corrected.
* bw/format-patch-o-create-leading-dirs:
format-patch: create leading components of output directory
Diffstat (limited to 'Documentation/git-format-patch.txt')
| -rw-r--r-- | Documentation/git-format-patch.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/git-format-patch.txt b/Documentation/git-format-patch.txt index 0ac56f4b70..2035d4d5d5 100644 --- a/Documentation/git-format-patch.txt +++ b/Documentation/git-format-patch.txt @@ -66,7 +66,8 @@ they are created in the current working directory. The default path can be set with the `format.outputDirectory` configuration option. The `-o` option takes precedence over `format.outputDirectory`. To store patches in the current working directory even when -`format.outputDirectory` points elsewhere, use `-o .`. +`format.outputDirectory` points elsewhere, use `-o .`. All directory +components will be created. By default, the subject of a single patch is "[PATCH] " followed by the concatenation of lines from the commit message up to the first blank |
