public inbox for git@vger.kernel.org 
 help / color / mirror / Atom feed
* [PATCH] builtin/merge.c: add the merge.verifysignatures config option
@ 2015-04-22  0:13 Bruno Vieira
  2015-04-22 17:55 ` Junio C Hamano
  0 siblings, 1 reply; 2+ messages in thread
From: Bruno Vieira @ 2015-04-22  0:13 UTC (permalink / raw)
  To: git

Signed-off-by: Bruno Vieira <mail@bmpvieira•com>
---
This seemed to be missing. Sorry if otherwise or if I'm doing something wrong (first time contributing).

 builtin/merge.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/builtin/merge.c b/builtin/merge.c
index 3b0f8f9..5dbc10f 100644
--- a/builtin/merge.c
+++ b/builtin/merge.c
@@ -598,6 +598,9 @@ static int git_merge_config(const char *k, const char *v, void *cb)
 	} else if (!strcmp(k, "merge.defaulttoupstream")) {
 		default_to_upstream = git_config_bool(k, v);
 		return 0;
+	} else if (!strcmp(k, "merge.verifysignatures")) {
+		verify_signatures = git_config_bool(k, v);
+		return 0;
 	} else if (!strcmp(k, "commit.gpgsign")) {
 		sign_commit = git_config_bool(k, v) ? "" : NULL;
 		return 0;
-- 
2.3.2 (Apple Git-55)

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-04-22 17:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-22  0:13 [PATCH] builtin/merge.c: add the merge.verifysignatures config option Bruno Vieira
2015-04-22 17:55 ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox