我使用生成RSA密钥对
gpg --gen-key
然后
git secret init
git secret tell my.mail@gmail.com
git secret add secrets.yml
git secret hide
然后我做
git secret reveal
得到
gpg: decryption failed: secret key not available
git-secret: abort: problem decrypting file with gpg: exit code 2: /path/to/project/secrets.yml
它能够找到公钥,但不能找到私钥?还是gpg仅生成了public?还是我应该以某种方式显式地给出应使用的git secret
键?