I have installed Cygwin Terminal on my windows. And I try to clone the git repository we have on a linux server with command :
$ git clone ssh://some.server.com/somename
Cloning into 'somename'...
ituser3@some.server.com's password:
I know that there is SSL certificate in the server.
How can I get it connecting without password? How can it take into account the certificate on the server?
copy and pasted from mathias kettner’s tutorial
First log in on A as user a and generate a pair of authentication keys. Do not enter a passphrase:
Now use ssh to create a directory ~/.ssh as user b on B. (The directory may already exist, which is fine):
Finally append a’s new public key to b@B:.ssh/authorized_keys and enter b’s password one last time:
From now on you can log into B as b from A as a without password: