I usually set a passphrase in my ssh keys so that, in case of it gets compromised, I might get some time to rotate to a new one.
However, when working with go modules, I noticed that when executing a go get
and making use of keys with passphrase, I get the error below
[email protected]: Permission denied (publickey).
Is there any way to be prompted for this password when resolving dependencies in Go?
For now, I removed the password :(