我正在WSL2
使用Ubuntu v20
带有VSCode
.
我想将 GPG 签名的 Git Commit 发送到GitHub
VSCode Dev Container。
我尝试使用如下设置:
在 Windows 中安装Gpg4win
将软件包安装在
WSL2
sudo apt-get install gpg gnupg gpg-agent socat
- 编辑
~/.gnupg/gpg-agent.conf
如下WSL2
:
default-cache-ttl 34560000
max-cache-ttl 34560000
pinentry-program /mnt/c/Program Files (x86)/Gpg4win/bin/pinentry.exe
- 杀死代理
gpgconf --kill gpg-agent
- 生成密钥
WSL2
gpg --full-generate-key
- 列出其中的键
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]
- set git config in
WSL2
,email 与 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
- 导出密钥并导入
Github
.
gpg --armor --export 00EF4D3F22885E4B
- 当我使用下面的 CLI 提交代码时
WSL2
,会弹出一个让我输入密码的弹出窗口,我可以成功提交代码。
git commit -S -m "test"
但是,我无法提交Dev Container instance
以下错误中的代码:
error: gpg failed to sign the data
fatal: failed to write commit object
如何提交代码Dev Container instance
?谢谢