]> git.ipfire.org Git - thirdparty/git.git/commit - Documentation/git-format-patch.txt
format-patch: add "--signature-file=<file>" option
authorJeremiah Mahler <jmmahler@gmail.com>
Sat, 24 May 2014 04:08:14 +0000 (21:08 -0700)
committerJunio C Hamano <gitster@pobox.com>
Tue, 27 May 2014 19:38:32 +0000 (12:38 -0700)
commit7022650f61ff7d7c9297db4a04f4e93ae14e1750
tree3369dd500a78e0a1def31441b3b4be3b7c940085
parentc6076e2b4aaebd4a49b01255fe8c67405704aa72
format-patch: add "--signature-file=<file>" option

Add an option to format-patch for reading a signature from a file.

  $ git format-patch -1 --signature-file=$HOME/.signature

The config variable `format.signaturefile` can also be used to make
this the default.

  $ git config format.signaturefile $HOME/.signature

  $ git format-patch -1

Signed-off-by: Jeremiah Mahler <jmmahler@gmail.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