]> git.ipfire.org Git - thirdparty/git.git/commit - Documentation/git-format-patch.txt
format-patch: introduce format.outputDirectory configuration
authorAlexander Kuleshov <kuleshovmail@gmail.com>
Wed, 13 Jan 2016 13:20:11 +0000 (06:20 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 13 Jan 2016 18:55:01 +0000 (10:55 -0800)
commitbc6bf2d7641d6c2450b347d5a0b2f954728bf4d9
tree97dbe8488517a2ecb46853795ccc242982abc05e
parent754884255bb580df159e58defa81cdd30b5c430c
format-patch: introduce format.outputDirectory configuration

We can pass -o/--output-directory to the format-patch command to store
patches in some place other than the working directory. This patch
introduces format.outputDirectory configuration option for same
purpose.

The case of usage of this configuration option can be convenience
to not pass every time -o/--output-directory if an user has pattern
to store all patches in the /patches directory for example.

The format.outputDirectory has lower priority than command line
option, so if user will set format.outputDirectory and pass the
command line option, a result will be stored in a directory that
passed to command line option.

Signed-off-by: Alexander Kuleshov <kuleshovmail@gmail.com>
Signed-off-by: Stephen P. Smith <ischis2@cox.net>
Reviewed-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/config.txt
Documentation/git-format-patch.txt
builtin/log.c
t/t4014-format-patch.sh