最佳答案
我在 Brew 安装了 GPG。
brew install gpg
它是 gnupg2-2.0.30 _ 2。
当我提交时,我得到一个错误消息:
You need a passphrase to unlock the secret key for
user: "Max Mustermann (mycomment) <mm@test.de>"
2048-bit RSA key, ID 1111AAAA, created 2017-01-05
error: gpg failed to sign the data
fatal: failed to write commit object
我使用了下面的命令:
gpg --list-secret-keys | grep ^sec
它还给了我:
sec 2048R/1111AAAA 2017-01-05
然后我使用了这个命令:
git config --global user.signingkey 1111AAAA
提交返回相同的错误消息。
我怎样才能解决这个问题?