1.. .. !Error with signed commits November 2020 ยท 1 minute read Posted in: git For some reason my git commits failed when I re-enabled gpg signing. This is how I finally fixed that problem. ##### Add to `~/.gnupg/gpg.conf` ```plain use-agent pinentry-mode loopback ``` ##### And add to `~/.gnupg/gpg-agent.conf` ```plain allow-loopback-pinentry ``` ##### Restart the agent ```console $ echo RELOADAGENT | gpg-connect-agent ``` This information was found on [d.sb/2016/11/gpg-inappropriate-ioctl-for-device-errors][1]. [1]: https://d.sb/2016/11/gpg-inappropriate-ioctl-for-device-errors 1.. ..