将 GPG 签名的 Git 提交集成到 VSCode Dev Container (WSL2 Ubuntu v20)

Integration of GPG-signed Git commits in VSCode Dev Container (WSL2 Ubuntu v20)

我正在使用 Windows10 WSL2(运行 Ubuntu v20) 和 VSCode.

我想发送 GPG 签名的 Git 提交到 VSCode Dev Container 中的 GitHub

我尝试使用如下设置:

  1. 在Windows

    中安装Gpg4win
  2. 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
  2. 中生成密钥
gpg --full-generate-key
  1. 列出 WSL2
  2. 中的键
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 配置,电子邮件与 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 中的代码?谢谢

原来我不应该在我的Dev Container instance中安装gnupg2