我关注了几篇关于Git 2.10发行说明中漂亮属性的文章。通过将 git 升级到 2.10.0 并对全局结果进行更改如下 -.gitconfig
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true
[user]
name = xyz
email = abc.def@gmail.com
signingkey = AAAAAAA
[core]
excludesfile = /Users/xyz/.gitignore_global
editor = 'subl' --wait
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
cmd = /Applications/SourceTree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
trustExitCode = true
[alias]
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
[color "diff"]
old = red strike
new = green italic
但是现在我尝试使用
git commit -a -S -m "message"
我看到以下错误 -
您需要一个密码来解锁密钥
用户:“XYZ(数字签名)”
2048 位 RSA 密钥,ID AAAAAAA,创建于 2016-07-01
错误:gpg 未能签署数据致命:未能写入提交对象
注意- 我仍然可以使用git commit -a -m "message"
有没有办法克服同样的问题?或者在配置中需要进行任何更改gpg
以配合 git 的升级?
更新 1
还寻求进一步的用处,遵循Is there a way to "autosign" commits in Git with a GPG key? . 我已经使用
git config --global user.signingkey ED5CDE14(with my key)
git config --global commit.gpgsign true
并且很明显会得到同样的错误。