I can't find any guides/information on how to get Aptana Studio's built-in git support to remember the ssh password for performing push/pull operations.
Does anybody have any ideas?
I can't find any guides/information on how to get Aptana Studio's built-in git support to remember the ssh password for performing push/pull operations.
Does anybody have any ideas?
NO!. The real path would be
%HOME%\.ssh\id_rsa --> for RSA keys, change the prefix if your key is DSA
Aptana Studio, actually its the built in GIT program, will look for your SSH key in your C:\Users\UserName.ssh folder on Windows.
To see if this key is working. First the server must have your public key and you set up the correct remote path to the repository. Then try a normal ssh username@host, if you can log in with the ssh key phrase you should be able to start using git to the remote.
To be able not to have to enter the ssh key phrase every time you want to connect to the remote you could either not have a ssh key phrase.
SSH login without password
Or you need some extra program that saves the password and enters it for you. A so called ssh agent.
Using ssh-agent with ssh
Maybe if you install Egit and uses this instead of Aptanas Git. Its probably possible to have it save your ssh key phrase. (Not verified!)
You need to make sure that Aptana is asking for a password because:
It also depends on what SSH exe you are using, as this thread mentions:
By default, Aptana uses:
On Linux I have my ssh config file ( ~/.ssh/config ) as follows
If you have a key with a password, you'll need something like ssh-agent or other app so you only have to enter your key password one time.
The super easy way to do it is just to include it in the url when you're importing the git repository.
Of course, you'll only want to use this trick with https urls.