ember-cli-update icon indicating copy to clipboard operation
ember-cli-update copied to clipboard

gpg failed to sign the data

Open RobbieTheWagner opened this issue 4 years ago • 4 comments

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?

RobbieTheWagner avatar Apr 06 '21 12:04 RobbieTheWagner

Same here!

Exelord avatar May 27 '21 13:05 Exelord

I had to disable gpg signing, unfortunately.

RobbieTheWagner avatar May 28 '21 00:05 RobbieTheWagner

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.

vesper-arch avatar Jul 15 '23 03:07 vesper-arch

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

peternowee avatar Sep 24 '23 18:09 peternowee