I work on some projects hosted on gitlab.com and I'm using ssh to connect to these repositories. In SourceTree, I checked the option to save my ssh passphrase, but at ever action I take, a popup asks for it again... That's very irritating!
How can I save the passphrase manually for that account
Note that the passphrase is saved for a project hosted on a custom gitlab installation though...
What OS platform and what version of Sourcetree are you using?
Can you please check if the ssh keys are loaded to the agent? You can do so by running below command on a terminal window.
ssh-add -l
It should list down the keys added to the agent. If you don't find anything listed, please add the key to the agent with the command below,
ssh-add <path_to_key>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have the same issue but in Windows 10. ssh-add from command-line doesn't seem to work right. (Error connecting to agent: No such file or directory) Regardless, what would address the root cause? What can be set or done from the sourcetree application to remedy this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have the same problem. Tried setting up ssh-agent as a service using PowerShell, but does not make any difference.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Had the same problem. I had to convert the .ppk key-file to openssh file-format and then I fed that file into ssh-add. It worked and I think it achieves the desired result but I'm not quite sure. Will keep an eye on this thing over the next few days.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.