Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get Aptana Studio to remember git ssh password

Tags:

git

aptana

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?

like image 504
spooky Avatar asked May 15 '12 09:05

spooky


2 Answers

Aptana Studio, actually its the built in GIT program, will look for your SSH key in your C:\Users\UserName.ssh folder on Windows.

NO!. The real path would be

%HOME%\.ssh\id_rsa --> for RSA keys, change the prefix if your key is DSA

like image 194
name Avatar answered Sep 29 '22 02:09

name


On Linux I have my ssh config file ( ~/.ssh/config ) as follows

Host github.com
    User MyUsername
    IdentityFile=/home/MyUsername/.ssh/MySshKey`

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.

like image 21
Tom Potter Avatar answered Sep 29 '22 01:09

Tom Potter