我正在使用Windows10 WSL2
(运行Ubuntu v20
)和VSCode
。
我想将GPG签名的Git提交发送到VSCode Dev Container中的GitHub
。
我尝试与如下设置:
1.在Windows中安装Gpg4win
1.在WSL2
中安装软件包
sudo apt-get install gpg gnupg gpg-agent socat
1.在WSL2
中编辑~/.gnupg/gpg-agent.conf
,如下所示:
default-cache-ttl 34560000
max-cache-ttl 34560000
pinentry-program /mnt/c/Program Files (x86)/Gpg4win/bin/pinentry.exe
1.杀死代理
gpgconf --kill gpg-agent
1.在WSL2
中生成密钥
gpg --full-generate-key
1.列出WSL2
中的键
gpg --list-secret-keys --keyid-format=long
示例性输出
-----------------------------------
sec rsa4096/00EF4D3F22885E4B 2021-11-20 [SC]
1234567890ABCDEF1234567890ABCDEF12345678
uid [ultimate] peter <peter@example.com>
ssb rsa4096/ABC123D7FAA52318 2021-11-20 [E]
1.在WSL2
中设置git config,电子邮件与GPG密钥匹配。
git config --global user.email "peter@example.com"
git config --global user.name "peter"
git config --global user.signingkey 00EF4D3F22885E4B
git config --global commit.gpgsign true
1.导出密钥并在Github
中导入。
gpg --armor --export 00EF4D3F22885E4B
1.当我在WSL2
中使用下面的CLI提交代码时,会弹出一个窗口,让我输入密码短语,这样我就可以成功提交代码了。
git commit -S -m "test"
但是,我无法提交Dev Container instance
中的代码,错误如下:
error: gpg failed to sign the data
fatal: failed to write commit object
如何提交Dev Container instance
中的代码?谢谢
2条答案
按热度按时间r1wp621o1#
您的更改可能已经生效,因为您重建了容器。由于某些原因,重新启动进程不会应用某些更改,但重建容器会。VSCode文档要求安装gnugp 2,我已经安装了它,并执行了以下步骤:
https://code.visualstudio.com/docs/devcontainers/containers#_sharing-gpg-keys
例如
apt-get update && apt-get install gnupg2 -y
然后-
git config --global gpg.program "c:/Program Files (x86)/GnuPG/bin/gpg.exe"
其他一些React我已经看到其他地方设置GPG程序在Windows这样:
git config --global gpg.program gpg
创建Windows系统环境变量:x一m三n一x = x一m四n一x
然后-
在VSCode设置中启用提交签名通过GUI或在settings.json中:
"git.enableCommitSigning": true
h5qlskok2#
原来我不应该在我的
Dev Container instance
中安装gnupg2
。