在Mac上阻止GPG密码提示

Aus*_*tin 5 git gnupg

我正在尝试为Github生成一个gpg,如下所示:https//help.github.com/articles/generating-a-new-gpg-key/

我已经生成密钥并设置〜/ .gitconfig和我的本地.git / config包括

[user]
  email = austin@my_email_address.com
  name = Austin Gibbons
  signingkey = <key_id>
[gpg]
  program = /usr/local/bin/gpg
[commit]
  gpgsign = true
Run Code Online (Sandbox Code Playgroud)

在〜/ .gnupg / gpg.conf中,我有

no-emit-version
use-agent
Run Code Online (Sandbox Code Playgroud)

并在〜/ .gnupg / gpg-agent.conf中

default-cache-ttl 28800000
max-cache-ttl 28800000
use-standard-socket
pinentry-program /usr/local/MacGPG2/libexec/pinentry-mac.app/Contents/MacOS/pinentry-mac
Run Code Online (Sandbox Code Playgroud)

每次运行时git commit,系统都会提示我输入我的gpg密码,而我设置的内容似乎都没有改变。我不确定如何在钥匙圈中进行设置,不胜感激!

我正在运行gpg-agent守护程序

$ ps aux | grep gpg
austin          63896   0.9  0.0  2432772    676 s010  S+    2:37PM   0:00.00 grep gpg
austin          98503   0.0  0.0  2436440    584   ??  S    10:41AM   0:00.00 /bin/bash /usr/local/MacGPG2/libexec/shutdown-gpg-agent
austin          51417   0.0  0.0  2475748    928   ??  Ss    1:58PM   0:00.45 gpg-agent --daemon
Run Code Online (Sandbox Code Playgroud)

当我添加到〜/ .gnupg / gpg.conf

no-tty
Run Code Online (Sandbox Code Playgroud)

我懂了

$ git commit -m "test"
error: gpg failed to sign the data
fatal: failed to write commit object
Run Code Online (Sandbox Code Playgroud)

与其他问题类似:

Git签名提交-如何取消显示“您需要密码才能解锁密钥...”

我还尝试通过命令行和gpg-tools生成密钥

Ash*_*dal 13

我遵循了类似于您所做的过程。(这是在 OSX 10.10.5 上完成的)

详情如下。


创建 GPG 密钥并将其添加到 Github

首先按照https://help.github.com/articles/generating-a-new-gpg-key/上的说明进行操作,其中在步骤 1 中要求下载 GPG 工具。我尝试下载https://sourceforge.net/projects/gpgosx/files/GnuPG-2.1.14.dmg/download但这并没有在 PATH 中结束,所以想到了搜索brew

$ brew search gpg
==> Formulae
gpg  gpg1 gpg2 gpgme libgpg-error

==> Casks
gpg-suite  gpg-suite-nightly  gpg-suite-no-mail  gpg-suite-pinentry gpg-sync

$ brew cask install gpg-suite-no-mail
==> Downloading https://releases.gpgtools.org/GPG_Suite-2019.2.dmg
...... installation log snipped ....
Run Code Online (Sandbox Code Playgroud)

注意:gpg-suite-no-mail安装全套 GPG 工具(现在称为 GPG 套件),GPG 邮件除外,这是一项高级功能。

到位后,按照https://help.github.com/articles/generate-a-new-gpg-key/上的说明进行操作,从 #2 到 #14,然后添加 4096 位 GPG 密钥到我的 Github 帐户。

以下是步骤 #2 到 #9(创建 GPG 密钥)的一些输出:

$ gpg --gen-key
gpg (GnuPG/MacGPG2) 2.0.30; Copyright (C) 2015 Free Software Foundation, Inc.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Please select what kind of key you want:
   (1) RSA and RSA (default)
   (2) DSA and Elgamal
   (3) DSA (sign only)
   (4) RSA (sign only)
Your selection?  (Chose DEFAULT)

RSA keys may be between 1024 and 4096 bits long.
What keysize do you want? (2048) 4096
Requested keysize is 4096 bits

Please specify how long the key should be valid.
         0 = key does not expire
      <n>  = key expires in n days
      <n>w = key expires in n weeks
      <n>m = key expires in n months
      <n>y = key expires in n years
Key is valid for? (0)
Key does not expire at all
Is this correct? (y/N) y

GnuPG needs to construct a user ID to identify your key.

Real name: blahblah
Email address: blahblah@blah.blah
Comment:
You selected this USER-ID:
    "blahblah <blahblah@blah.blah>"

Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? O

You need a Passphrase to protect your secret key.
We need to generate a lot of random bytes. It is a good idea to perform some other action (type on the keyboard, move the mouse, utilize the disks) during the prime generation; this gives the random number generator a better chance to gain enough entropy.
We need to generate a lot of random bytes. It is a good idea to perform some other action (type on the keyboard, move the mouse, utilize the disks) during the prime generation; this gives the random number generator a better chance to gain enough entropy.
gpg: key ABCDEFG marked as ultimately trusted
public and secret key created and signed.

gpg: checking the trustdb
gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
pub   4096R/ABCDEFG 2016-10-03
      Key fingerprint = adf asdf asdf asdf asf asdfas dfasdf
uid       [ultimate] blahblah <blahblah@blah.blah>
sub   4096R/ABCDEFG 2016-10-03
Run Code Online (Sandbox Code Playgroud)

使用 GPG 密钥和 GIT 创建和推送签名提交

然后创建并推送一个签名提交到 Github:

$ git config --local user.signingkey ABCDEFGHIJKLD2

$ touch test && git add test

$ git -c user.name="blahblah" -c user.email=blahblah@blah.blah commit -S -m "Test GPG"

You need a passphrase to unlock the secret key for
user: "blahblah <blahblah@blah.blah>"
4096-bit RSA key, ID ABCDEFG, created 2016-10-03

[master abcdefg] Test GPG
 1 file changed, 0 insertions(+), 0 deletions(-)
 create mode 100644 test

$ git push
Counting objects: 2, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (2/2), 956 bytes | 0 bytes/s, done.
Total 2 (delta 0), reused 0 (delta 0)
To ssh://github.com/someuser/somerepo.git
   abcdefg..abcdeff  master -> master
Run Code Online (Sandbox Code Playgroud)

第一次尝试创建签名提交导致以下弹出窗口: 在此处输入图片说明

但是,将其保存到钥匙串后,在创建另一个签名提交和推送提交时没有再次提示我,Github 正确地将提交显示为“已验证”:

在此处输入图片说明

  • 嗯,感谢 Ashutosh 的回复 - 当我执行这些步骤时,我从未在钥匙串弹出窗口中得到保存。您知道将其保存在钥匙串中的另一种方法吗? (2认同)
  • 升级到 Sierra 后我才遇到这个问题 (2认同)