Имейте в виду, что иногда GnuPG 2 имеет немного другой выход, особенно с GnuPG 2.1. Обычно это не будет проблемой, но в редких случаях могут происходить странные вещи.
Индивидуально настройте gpg
двоичный файл, который будет использоваться для каждого приложения. Например, у git есть gpg.program
опция. От man gpg-config
:
gpg.program
Use this custom program instead of "gpg" found on $PATH when making or verifying
a PGP signature. The program must support the same command-line interface as
GPG, namely, to verify a detached signature, "gpg --verify $file - <$signature"
is run, and the program is expected to signal a good signature by exiting with
code 0, and to generate an ascii-armored detached signature, the standard input
of "gpg -bsau $key" is fed with the contents to be signed, and the program is
expected to send the result to its standard output.
Используйте, git config --global gpg.program gpg2
чтобы выбрать GnuPG 2 для своего пользователя, или замените --global
на, --system
чтобы изменить настройки для всех пользователей.