Remember GPG password when signing git commits

gauge picture gauge · Apr 25, 2016 · Viewed 8.1k times · Source

Would it be possible for the GPG password to be saved, so that I am not prompted for the passphrase everytime I make a git commit?

Answer

Ben picture Ben · May 22, 2016

You can set a timeout period for gpg-agent in ~/.gnupg/gpg-agent.conf with this line:

default-cache-ttl 3600

That would tell gpg-agent to store the passphrase for one hour. You wouldn't want it to be indefinite, but not constantly typing it is of benefit too.