ember-cli-update
ember-cli-update copied to clipboard
gpg failed to sign the data
I'm getting Error: git "commit" "--allow-empty" "-m" "v3.22.0" "--no-verify" failed with message error: gpg failed to sign the data any ideas on why that may be?
Same here!
I had to disable gpg signing, unfortunately.
I had to disable gpg signing, unfortunately.
How do you disable that, I've been coming across that error whenever I try to commit changes.
I had to disable gpg signing, unfortunately.
How do you disable that, I've been coming across that error whenever I try to commit changes.
$ git config --show-scope --get-regexp "gpgsign"
Then, depending on the output of the above:
$ git config commit.gpgsign false
$ git config tag.gpgsign false
$ git config --global commit.gpgsign false
$ git config --global tag.gpgsign false