闲暇时也许会更新吧

0%

Github使用GPG密钥commit

参考文档:[git]使用GPG签名你的commit

上一篇文章中创建了GPG密钥之后

0 Github端

首先在 https://github.com/settings/keys 点击绿色的New GPG key

将GPG密钥的公钥内容输入进去,然后点击绿色的Add GPG Key

1 本地端

添加GPG密钥

1
git config --global user.signingkey FD88ED069146EA37

全局启用

1
2
git config --global commit.gpgsign true #开启
git config --global commit.gpgsign false #关闭

仅在单个仓库中开启,进入仓库目录,然后运行

1
2
git config commit.gpgsign true #开启
git config commit.gpgsign false #关闭

然后commit之后push之后即可在远程仓库的commits中看到绿色的”Verified”标记