.ssh/config file for windows (git) -
.ssh/config file for windows (git) -
i've been looking solution on how can utilize multiple ssh keys , figured out, work config file in .ssh directory, doesn't work on windows.
my problem i'm using private key access git server, looks this: ssh://git@example.com/directory , works fine when i'm using tortoisegit, 'cause there possibility take private key.
but want utilize git rep in intellij thought , there alternative utilize git native shell , works, if set key, called id_rsa ,into .ssh folder. want utilize multiple ssh keys (so key name "id_rsa_test", how configure .ssh/config file under windows, works usual git server?
the examples found yet utilize github.
there alternative identityfile
can utilize in ~/.ssh/config
file , specify key file each host.
host host_with_key1.net identityfile ~/.ssh/id_rsa host host_with_key2.net identityfile ~/.ssh/id_rsa_test
more info: http://linux.die.net/man/5/ssh_config
also @ http://nerderati.com/2011/03/17/simplify-your-life-with-an-ssh-config-file/
git ssh intellij-idea
Comments
Post a Comment