I\'m using git gpg signing. I want to disable it. I\'ve set .gitconfig
.gitconfig
[user] name = NAME email = EMAIL signingkey = KEY ... [commit]
You can disable this by running git config commit.gpgsign false This sets the configuration locally instead of globally.
git config commit.gpgsign false
Putting this setting in .gitconfig worked for me with what you had, without the [user] configuration:
[commit] gpgsign = false