error: gpg failed to sign the data fatal: failed to write commit object
error: gpg failed to sign the data fatal: failed to write commit object
好吧,我已经从 Linux mint cz 中删除了我所有的 gpg 密钥,他们在提交 Github 时遇到了问题。
即使在删除那些我仍然得到这些错误。请帮忙
错误:gpg 无法签署数据
致命:无法写入提交对象
将 gpg.program
配置设置为 gpg
路径对我有帮助。
找出gpg
路径运行:
$ which gpg
在我的例子中,git-bash 告诉它在路径 /usr/bin/gpg
中,所以我 运行:
$ git config --global gpg.program /usr/bin/gpg
好吧,我已经从 Linux mint cz 中删除了我所有的 gpg 密钥,他们在提交 Github 时遇到了问题。 即使在删除那些我仍然得到这些错误。请帮忙 错误:gpg 无法签署数据 致命:无法写入提交对象
将 gpg.program
配置设置为 gpg
路径对我有帮助。
找出gpg
路径运行:
$ which gpg
在我的例子中,git-bash 告诉它在路径 /usr/bin/gpg
中,所以我 运行:
$ git config --global gpg.program /usr/bin/gpg