If you have a working GPG signing, your GIT logs into the terminal, but not into Intellij Idea, you can use pinentry-mac
. Remember to also update the files gpg.conf
and gpg-agent.conf
.
brew install pinentry-mac
echo "no-tty" >> ~/.gnupg/gpg.conf
echo $(which pinentry-mac) >> ~/.gnupg/gpg-agent.conf
Further information here: https://nathanielhoag.com/blog/2016/09/05/signing-commits-in-git/
source
share