Reputation: 62424
I'm using PHPStorm and an "OpenSSH" dialog continues to pop up every few minutes on a project I'm working on. It appears to be trying to fetch a status from the remote Mercurial repository. How can I configure OpenSSH to remember my password?
Upvotes: 1
Views: 448
Reputation: 78340
OpenSSH will bravely refuse to save passwords. You need to setup a public key, run the key agent, and then add that key. Here's a howto: http://paulkeck.com/ssh/
Upvotes: 8