I changed my global Git configuration to sign all commits. I also use gpg-agent so that I don't have to type my password every time.
Now every time I make a new commit I see the following five lines printed to my console:
[blank line]
You need a passphrase to unlock the secret key for
user: "John Doe <mail@gmail.com>"
2048-bit RSA key, ID ABCDEF12, created 2016-01-01
[blank line]
Even worse, when I do a simple stash, this message is printed twice, needlessly filling my console (I assume for one for each of the two commit objects that are created).
Is there a way to suppress this output?