MCPcopy Index your code
hub / github.com/git/git / gpg_interface_lazy_init

Function gpg_interface_lazy_init

gpg-interface.c:21–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19 const struct config_context *, void *);
20
21static void gpg_interface_lazy_init(void)
22{
23 static int done;
24
25 if (done)
26 return;
27 done = 1;
28 repo_config(the_repository, git_gpg_config, NULL);
29}
30
31static char *configured_signing_key;
32static char *ssh_default_key_command;

Callers 5

check_signatureFunction · 0.85
set_signing_keyFunction · 0.85
get_signing_key_idFunction · 0.85
get_signing_keyFunction · 0.85
sign_bufferFunction · 0.85

Calls 1

repo_configFunction · 0.70

Tested by

no test coverage detected