aboutsummaryrefslogtreecommitdiffstats
path: root/sequencer.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-03-17 14:03:10 -0700
committerJunio C Hamano <gitster@pobox.com>2023-03-17 14:03:10 -0700
commitaf5388d2ddb0bc7c22fbe698078f4ca07879d954 (patch)
tree6829523f0d96f2014ea373a7aa5b35cdc3c45420 /sequencer.c
parentd0732a8120d9cc62d8b6efa4ec48966f890f84b7 (diff)
parentcc5d1d32fd489f7eb98f762de303b499f2117638 (diff)
downloadgit-af5388d2ddb0bc7c22fbe698078f4ca07879d954.tar.gz
Merge branch 'jc/gpg-lazy-init'
Instead of forcing each command to choose to honor GPG related configuration variables, make the subsystem lazily initialize itself. * jc/gpg-lazy-init: drop pure pass-through config callbacks gpg-interface: lazily initialize and read the configuration
Diffstat (limited to 'sequencer.c')
-rw-r--r--sequencer.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/sequencer.c b/sequencer.c
index 675dee7b8f..fb99115be5 100644
--- a/sequencer.c
+++ b/sequencer.c
@@ -265,10 +265,6 @@ static int git_sequencer_config(const char *k, const char *v, void *cb)
if (opts->action == REPLAY_REVERT && !strcmp(k, "revert.reference"))
opts->commit_use_reference = git_config_bool(k, v);
- status = git_gpg_config(k, v, NULL);
- if (status)
- return status;
-
return git_diff_basic_config(k, v, NULL);
}