We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Elegant Git raises non-zero exit code if there is no gpg key for an email.
~/tmp git clone-repository [email protected]:some-repo.git ==>> git clone clone-repository [email protected]:some-repo.git Cloning into 'some-repo'... ....... =========================== == Configuring basics... == =========================== Please hit enter if you wish {default value}. ...... ============================== == Configuring signature... == ============================== ==>> gpg --list-secret-keys --keyid-format long [email protected] gpg: error reading key: No secret key ~/tmp echo $? 2
The program exits with 0 exit code.
git --version
bash --version
The text was updated successfully, but these errors were encountered:
Abort signature configuration if there is no key
9d453ce
Sometimes happens that there is no GPG key for the given email. In this case, the configuration will be successfully completed. #243
Solved in version 0.17.0.
0.17.0
Sorry, something went wrong.
No branches or pull requests
The bug
Elegant Git raises non-zero exit code if there is no gpg key for an email.
Steps to reproduce
Expected behavior
The program exits with 0 exit code.
My environment
git --version
: 2.24.0bash --version
: 3.2.57The text was updated successfully, but these errors were encountered: