Re: How to use multiple SSH keys on Git exe (not bash)

2018-01-10 Thread Sam Millman
m Millman [mailto:sam.mill...@gmail.com] >> Sent: January 10, 2018 11:26 AM >> To: Randall S. Becker >> Cc: Ævar Arnfjörð Bjarmason ; git@vger.kernel.org >> Subject: Re: How to use multiple SSH keys on Git exe (not bash) >> >> Does the ssh.exe come from OpenSSH

RE: How to use multiple SSH keys on Git exe (not bash)

2018-01-10 Thread Randall S. Becker
: Ævar Arnfjörð Bjarmason ; git@vger.kernel.org > Subject: Re: How to use multiple SSH keys on Git exe (not bash) > > Does the ssh.exe come from OpenSSH? I thought it was Git's implementation > of the SSH protocol > > On 10 January 2018 at 16:23, Randall S. Becker > wrote:

Re: How to use multiple SSH keys on Git exe (not bash)

2018-01-10 Thread Sam Millman
2018 11:03 AM >> To: Ævar Arnfjörð Bjarmason >> Cc: git@vger.kernel.org >> Subject: Re: How to use multiple SSH keys on Git exe (not bash) >> >> I actually played a bit more and got this: >> >> Host * >> IdentityFile ~/.ssh/id_rsa_d >> Iden

RE: How to use multiple SSH keys on Git exe (not bash)

2018-01-10 Thread Randall S. Becker
.kernel.org [mailto:git-ow...@vger.kernel.org] On > Behalf Of Sam Millman > Sent: January 10, 2018 11:03 AM > To: Ævar Arnfjörð Bjarmason > Cc: git@vger.kernel.org > Subject: Re: How to use multiple SSH keys on Git exe (not bash) > > I actually played a bit more and got this: &

RE: How to use multiple SSH keys on Git exe (not bash)

2018-01-10 Thread Randall S. Becker
On January 10, 2018 11:01 AM Sam Millman wrote: > That would mean I would need to change the case for a letter everytime I > have a repo with a new key, that would mean I would be restricted to > 12 client repos at a time :\, seems very hacky to me > > On 10 January 2018 at 15:58, Randall S. Becke

Re: How to use multiple SSH keys on Git exe (not bash)

2018-01-10 Thread Sam Millman
I actually played a bit more and got this: Host * IdentityFile ~/.ssh/id_rsa_d IdentityFile ~/.ssh/id_rsa Host bitbucket_1 User git HostName bitbucket.org IdentityFile ~/.ssh/id_rsa_d Host bitbucket_2 User git HostName bitbucket.org IdentityFile ~/.ssh/id_rsa And from basic testing it seems to

Re: How to use multiple SSH keys on Git exe (not bash)

2018-01-10 Thread Sam Millman
That would mean I would need to change the case for a letter everytime I have a repo with a new key, that would mean I would be restricted to 12 client repos at a time :\, seems very hacky to me On 10 January 2018 at 15:58, Randall S. Becker wrote: > On January 10, 2018 10:31 AM Sam Millman wrote

Re: How to use multiple SSH keys on Git exe (not bash)

2018-01-10 Thread Ævar Arnfjörð Bjarmason
On Wed, Jan 10 2018, Sam Millman jotted: > I am trying, for the sake of PhpStorm, to get multiple SSH keys > working using git . exe, which means no GitBash. > > I can get the keys to work just fine with GitBash. > > I edited my .ssh/config to look like (I know this is incorrect): > > Host bituck

RE: How to use multiple SSH keys on Git exe (not bash)

2018-01-10 Thread Randall S. Becker
On January 10, 2018 10:31 AM Sam Millman wrote: > I am trying, for the sake of PhpStorm, to get multiple SSH keys working using > git . exe, which means no GitBash. > > I can get the keys to work just fine with GitBash. > > I edited my .ssh/config to look like (I know this is incorrect): > > Hos

Re: How to use multiple SSH keys on Git exe (not bash)

2018-01-10 Thread Sam Millman
I am trying, for the sake of PhpStorm, to get multiple SSH keys working using git . exe, which means no GitBash. I can get the keys to work just fine with GitBash. I edited my .ssh/config to look like (I know this is incorrect): Host bitucket . org IdentityFile ~/.ssh/id_rsa1 Host bitbucket . o