diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-12-13 15:40:35 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-02-24 14:51:35 -0800 |
commit | 55ca3f99ae4895605a348322dd2fc50f2065f508 (patch) | |
tree | cc01d0ad40b9320db83ac6ee3ac3ab5742ba1d8c /Documentation/git-commit-tree.txt | |
parent | d95bfb12b87a0be9666f806683e198df9738d0e7 (diff) | |
download | git-55ca3f99ae4895605a348322dd2fc50f2065f508.tar.gz |
commit-tree: add and document --no-gpg-sign
Document how to override commit.gpgsign configuration that is set to
true per "git commit" invocation (parse-options machinery lets us
say "--no-gpg-sign" to do so).
"git commit-tree" does not use parse-options, so manually add the
corresponding option for now.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-commit-tree.txt')
-rw-r--r-- | Documentation/git-commit-tree.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/git-commit-tree.txt b/Documentation/git-commit-tree.txt index cafdc9642d..a469eab066 100644 --- a/Documentation/git-commit-tree.txt +++ b/Documentation/git-commit-tree.txt @@ -55,8 +55,13 @@ OPTIONS from the standard input. -S[<keyid>]:: +--gpg-sign[=<keyid>]:: GPG-sign commit. +--no-gpg-sign:: + Countermand `commit.gpgsign` configuration variable that is + set to force each and every commit to be signed. + Commit Information ------------------ |