diff options
author | Nicolas Vigier <boklm@mars-attacks.org> | 2013-11-05 00:14:41 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-02-24 14:50:56 -0800 |
commit | d95bfb12b87a0be9666f806683e198df9738d0e7 (patch) | |
tree | 37908b19d235a3c94dbf375ea457d9e0249c5319 /Documentation | |
parent | Update draft release notes to 1.8.5 (diff) | |
download | tgif-d95bfb12b87a0be9666f806683e198df9738d0e7.tar.xz |
commit-tree: add the commit.gpgsign option to sign all commits
If you want to GPG sign all your commits, you have to add the -S option
all the time. The commit.gpgsign config option allows to sign all
commits automatically.
Signed-off-by: Nicolas Vigier <boklm@mars-attacks.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/config.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index ab26963d61..1672284746 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -988,6 +988,14 @@ commit.cleanup:: have to remove the help lines that begin with `#` in the commit log template yourself, if you do this). +commit.gpgsign:: + + A boolean to specify whether all commits should be GPG signed. + Use of this option when doing operations such as rebase can + result in a large number of commits being signed. It may be + convenient to use an agent to avoid typing your GPG passphrase + several times. + commit.status:: A boolean to enable/disable inclusion of status information in the commit message template when using an editor to prepare the commit |