git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* Re: How to use multiple SSH keys on Git exe (not bash)
       [not found] <CALKyTE7+qJSYHQRB44HjHXK_EjOxNnCfQOROSDVVwAFR-gMnXQ@mail.gmail.com>
@ 2018-01-10 15:30 ` Sam Millman
  2018-01-10 15:58   ` Randall S. Becker
  2018-01-10 15:58   ` Ævar Arnfjörð Bjarmason
  0 siblings, 2 replies; 10+ messages in thread
From: Sam Millman @ 2018-01-10 15:30 UTC (permalink / raw)
  To: git

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 . org
IdentityFile ~/.ssh/id_rsa


And id_rsa1 works, I can actually pick from the other repo. But, of
course, id_rsa does not now.

I change to:

Host bitucket . org-dd
HostName bitbucket . org
IdentityFile ~/.ssh/id_rsa1

Host bitbucket . org-sas
HostName bitbucket . org
IdentityFile ~/.ssh/id_rsa

And now only id_rsa works.

I also tried combining the two IdentityFile lines together like so
(for some reason):

Host bitucket . org
IdentityFile ~/.ssh/id_rsa1
IdentityFile ~/.ssh/id_rsa

I have even tried running ssh-agent . exe, adding id_rsa1 to that and
then running the git clone with no result.

The weird thing is, I have two public keys as well and they both load
in the ssh . exe (they return errors about format), I just cannot get
my ssh . exe to work with multiple private keys.

On 10 January 2018 at 15:29, Sam Millman <sam.millman@gmail.com> 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):
>
> Host bitucket . org
> IdentityFile ~/.ssh/id_rsa1
>
> Host bitbucket . org
> IdentityFile ~/.ssh/id_rsa
>
>
> And id_rsa1 works, I can actually pick from the other repo. But, of course,
> id_rsa does not now.
>
> I change to:
>
> Host bitucket . org-dd
> HostName bitbucket . org
> IdentityFile ~/.ssh/id_rsa1
>
> Host bitbucket . org-sas
> HostName bitbucket . org
> IdentityFile ~/.ssh/id_rsa
>
> And now only id_rsa works.
>
> I also tried combining the two IdentityFile lines together like so (for some
> reason):
>
> Host bitucket . org
> IdentityFile ~/.ssh/id_rsa1
> IdentityFile ~/.ssh/id_rsa
>
> I have even tried running ssh-agent . exe, adding id_rsa1 to that and then
> running the git clone with no result.
>
> The weird thing is, I have two public keys as well and they both load in the
> ssh . exe (they return errors about format), I just cannot get my ssh . exe
> to work with multiple private keys.
>
> Has anyone got any ideas on how to solve this?

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: How to use multiple SSH keys on Git exe (not bash)
  2018-01-10 15:30 ` How to use multiple SSH keys on Git exe (not bash) Sam Millman
@ 2018-01-10 15:58   ` Randall S. Becker
  2018-01-10 16:01     ` Sam Millman
  2018-01-10 15:58   ` Ævar Arnfjörð Bjarmason
  1 sibling, 1 reply; 10+ messages in thread
From: Randall S. Becker @ 2018-01-10 15:58 UTC (permalink / raw)
  To: 'Sam Millman', git

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):
> 
> Host bitucket . org
> IdentityFile ~/.ssh/id_rsa1
> 
> Host bitbucket . org
> IdentityFile ~/.ssh/id_rsa
> 
> 
> And id_rsa1 works, I can actually pick from the other repo. But, of course,
> id_rsa does not now.
> 
> I change to:
> 
> Host bitucket . org-dd
> HostName bitbucket . org
> IdentityFile ~/.ssh/id_rsa1
> 
> Host bitbucket . org-sas
> HostName bitbucket . org
> IdentityFile ~/.ssh/id_rsa
> 
> And now only id_rsa works.
> 
> I also tried combining the two IdentityFile lines together like so (for some
> reason):
> 
> Host bitucket . org
> IdentityFile ~/.ssh/id_rsa1
> IdentityFile ~/.ssh/id_rsa
> 
> I have even tried running ssh-agent . exe, adding id_rsa1 to that and then
> running the git clone with no result.
> 
> The weird thing is, I have two public keys as well and they both load in the
> ssh . exe (they return errors about format), I just cannot get my ssh . exe to
> work with multiple private keys.
> 
> On 10 January 2018 at 15:29, Sam Millman <sam.millman@gmail.com> 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):
> >
> > Host bitucket . org
> > IdentityFile ~/.ssh/id_rsa1
> >
> > Host bitbucket . org
> > IdentityFile ~/.ssh/id_rsa
> >
> >
> > And id_rsa1 works, I can actually pick from the other repo. But, of
> > course, id_rsa does not now.
> >
> > I change to:
> >
> > Host bitucket . org-dd
> > HostName bitbucket . org
> > IdentityFile ~/.ssh/id_rsa1
> >
> > Host bitbucket . org-sas
> > HostName bitbucket . org
> > IdentityFile ~/.ssh/id_rsa
> >
> > And now only id_rsa works.
> >
> > I also tried combining the two IdentityFile lines together like so
> > (for some
> > reason):
> >
> > Host bitucket . org
> > IdentityFile ~/.ssh/id_rsa1
> > IdentityFile ~/.ssh/id_rsa
> >
> > I have even tried running ssh-agent . exe, adding id_rsa1 to that and
> > then running the git clone with no result.
> >
> > The weird thing is, I have two public keys as well and they both load
> > in the ssh . exe (they return errors about format), I just cannot get
> > my ssh . exe to work with multiple private keys.
> >
> > Has anyone got any ideas on how to solve this?

The ~/.ssh/config file is case sensitive by definition when it comes to Host and HostName. Try bitbucket.org for one and Bitbucket.org for another. You will have to change the remote URL accordingly to pick up the correct identity.

Good luck,
Randall



^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: How to use multiple SSH keys on Git exe (not bash)
  2018-01-10 15:30 ` How to use multiple SSH keys on Git exe (not bash) Sam Millman
  2018-01-10 15:58   ` Randall S. Becker
@ 2018-01-10 15:58   ` Ævar Arnfjörð Bjarmason
  2018-01-10 16:02     ` Sam Millman
  1 sibling, 1 reply; 10+ messages in thread
From: Ævar Arnfjörð Bjarmason @ 2018-01-10 15:58 UTC (permalink / raw)
  To: Sam Millman; +Cc: git


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 bitucket . org
> IdentityFile ~/.ssh/id_rsa1
>
> Host bitbucket . org
> IdentityFile ~/.ssh/id_rsa
>
>
> And id_rsa1 works, I can actually pick from the other repo. But, of
> course, id_rsa does not now.
>
> I change to:
>
> Host bitucket . org-dd
> HostName bitbucket . org
> IdentityFile ~/.ssh/id_rsa1
>
> Host bitbucket . org-sas
> HostName bitbucket . org
> IdentityFile ~/.ssh/id_rsa
>
> And now only id_rsa works.
>
> I also tried combining the two IdentityFile lines together like so
> (for some reason):
>
> Host bitucket . org
> IdentityFile ~/.ssh/id_rsa1
> IdentityFile ~/.ssh/id_rsa
>
> I have even tried running ssh-agent . exe, adding id_rsa1 to that and
> then running the git clone with no result.
>
> The weird thing is, I have two public keys as well and they both load
> in the ssh . exe (they return errors about format), I just cannot get
> my ssh . exe to work with multiple private keys.

This might just be a special case of the problem of some hosting
providers picking only the first key you provide, as described in this
thread:
https://public-inbox.org/git/20180103102840.27897-1-avarab@gmail.com/

If so, you either need to hack around this with ssh host aliases, or a
custom GIT_SSH_COMMAND.

> On 10 January 2018 at 15:29, Sam Millman <sam.millman@gmail.com> 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):
>>
>> Host bitucket . org
>> IdentityFile ~/.ssh/id_rsa1
>>
>> Host bitbucket . org
>> IdentityFile ~/.ssh/id_rsa
>>
>>
>> And id_rsa1 works, I can actually pick from the other repo. But, of course,
>> id_rsa does not now.
>>
>> I change to:
>>
>> Host bitucket . org-dd
>> HostName bitbucket . org
>> IdentityFile ~/.ssh/id_rsa1
>>
>> Host bitbucket . org-sas
>> HostName bitbucket . org
>> IdentityFile ~/.ssh/id_rsa
>>
>> And now only id_rsa works.
>>
>> I also tried combining the two IdentityFile lines together like so (for some
>> reason):
>>
>> Host bitucket . org
>> IdentityFile ~/.ssh/id_rsa1
>> IdentityFile ~/.ssh/id_rsa
>>
>> I have even tried running ssh-agent . exe, adding id_rsa1 to that and then
>> running the git clone with no result.
>>
>> The weird thing is, I have two public keys as well and they both load in the
>> ssh . exe (they return errors about format), I just cannot get my ssh . exe
>> to work with multiple private keys.
>>
>> Has anyone got any ideas on how to solve this?

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: How to use multiple SSH keys on Git exe (not bash)
  2018-01-10 15:58   ` Randall S. Becker
@ 2018-01-10 16:01     ` Sam Millman
  2018-01-10 16:14       ` Randall S. Becker
  0 siblings, 1 reply; 10+ messages in thread
From: Sam Millman @ 2018-01-10 16:01 UTC (permalink / raw)
  To: Randall S. Becker; +Cc: git

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 <rsbecker@nexbridge.com> wrote:
> 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):
>>
>> Host bitucket . org
>> IdentityFile ~/.ssh/id_rsa1
>>
>> Host bitbucket . org
>> IdentityFile ~/.ssh/id_rsa
>>
>>
>> And id_rsa1 works, I can actually pick from the other repo. But, of course,
>> id_rsa does not now.
>>
>> I change to:
>>
>> Host bitucket . org-dd
>> HostName bitbucket . org
>> IdentityFile ~/.ssh/id_rsa1
>>
>> Host bitbucket . org-sas
>> HostName bitbucket . org
>> IdentityFile ~/.ssh/id_rsa
>>
>> And now only id_rsa works.
>>
>> I also tried combining the two IdentityFile lines together like so (for some
>> reason):
>>
>> Host bitucket . org
>> IdentityFile ~/.ssh/id_rsa1
>> IdentityFile ~/.ssh/id_rsa
>>
>> I have even tried running ssh-agent . exe, adding id_rsa1 to that and then
>> running the git clone with no result.
>>
>> The weird thing is, I have two public keys as well and they both load in the
>> ssh . exe (they return errors about format), I just cannot get my ssh . exe to
>> work with multiple private keys.
>>
>> On 10 January 2018 at 15:29, Sam Millman <sam.millman@gmail.com> 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):
>> >
>> > Host bitucket . org
>> > IdentityFile ~/.ssh/id_rsa1
>> >
>> > Host bitbucket . org
>> > IdentityFile ~/.ssh/id_rsa
>> >
>> >
>> > And id_rsa1 works, I can actually pick from the other repo. But, of
>> > course, id_rsa does not now.
>> >
>> > I change to:
>> >
>> > Host bitucket . org-dd
>> > HostName bitbucket . org
>> > IdentityFile ~/.ssh/id_rsa1
>> >
>> > Host bitbucket . org-sas
>> > HostName bitbucket . org
>> > IdentityFile ~/.ssh/id_rsa
>> >
>> > And now only id_rsa works.
>> >
>> > I also tried combining the two IdentityFile lines together like so
>> > (for some
>> > reason):
>> >
>> > Host bitucket . org
>> > IdentityFile ~/.ssh/id_rsa1
>> > IdentityFile ~/.ssh/id_rsa
>> >
>> > I have even tried running ssh-agent . exe, adding id_rsa1 to that and
>> > then running the git clone with no result.
>> >
>> > The weird thing is, I have two public keys as well and they both load
>> > in the ssh . exe (they return errors about format), I just cannot get
>> > my ssh . exe to work with multiple private keys.
>> >
>> > Has anyone got any ideas on how to solve this?
>
> The ~/.ssh/config file is case sensitive by definition when it comes to Host and HostName. Try bitbucket.org for one and Bitbucket.org for another. You will have to change the remote URL accordingly to pick up the correct identity.
>
> Good luck,
> Randall
>
>

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: How to use multiple SSH keys on Git exe (not bash)
  2018-01-10 15:58   ` Ævar Arnfjörð Bjarmason
@ 2018-01-10 16:02     ` Sam Millman
  2018-01-10 16:23       ` Randall S. Becker
  0 siblings, 1 reply; 10+ messages in thread
From: Sam Millman @ 2018-01-10 16:02 UTC (permalink / raw)
  To: Ævar Arnfjörð Bjarmason; +Cc: git

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 actually work, it seems it is the
Host * that make sit work and it will actually iterate the keys and
try them.

Not sure why this is, any thoughts?

On 10 January 2018 at 15:58, Ævar Arnfjörð Bjarmason <avarab@gmail.com> wrote:
>
> 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 bitucket . org
>> IdentityFile ~/.ssh/id_rsa1
>>
>> Host bitbucket . org
>> IdentityFile ~/.ssh/id_rsa
>>
>>
>> And id_rsa1 works, I can actually pick from the other repo. But, of
>> course, id_rsa does not now.
>>
>> I change to:
>>
>> Host bitucket . org-dd
>> HostName bitbucket . org
>> IdentityFile ~/.ssh/id_rsa1
>>
>> Host bitbucket . org-sas
>> HostName bitbucket . org
>> IdentityFile ~/.ssh/id_rsa
>>
>> And now only id_rsa works.
>>
>> I also tried combining the two IdentityFile lines together like so
>> (for some reason):
>>
>> Host bitucket . org
>> IdentityFile ~/.ssh/id_rsa1
>> IdentityFile ~/.ssh/id_rsa
>>
>> I have even tried running ssh-agent . exe, adding id_rsa1 to that and
>> then running the git clone with no result.
>>
>> The weird thing is, I have two public keys as well and they both load
>> in the ssh . exe (they return errors about format), I just cannot get
>> my ssh . exe to work with multiple private keys.
>
> This might just be a special case of the problem of some hosting
> providers picking only the first key you provide, as described in this
> thread:
> https://public-inbox.org/git/20180103102840.27897-1-avarab@gmail.com/
>
> If so, you either need to hack around this with ssh host aliases, or a
> custom GIT_SSH_COMMAND.
>
>> On 10 January 2018 at 15:29, Sam Millman <sam.millman@gmail.com> 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):
>>>
>>> Host bitucket . org
>>> IdentityFile ~/.ssh/id_rsa1
>>>
>>> Host bitbucket . org
>>> IdentityFile ~/.ssh/id_rsa
>>>
>>>
>>> And id_rsa1 works, I can actually pick from the other repo. But, of course,
>>> id_rsa does not now.
>>>
>>> I change to:
>>>
>>> Host bitucket . org-dd
>>> HostName bitbucket . org
>>> IdentityFile ~/.ssh/id_rsa1
>>>
>>> Host bitbucket . org-sas
>>> HostName bitbucket . org
>>> IdentityFile ~/.ssh/id_rsa
>>>
>>> And now only id_rsa works.
>>>
>>> I also tried combining the two IdentityFile lines together like so (for some
>>> reason):
>>>
>>> Host bitucket . org
>>> IdentityFile ~/.ssh/id_rsa1
>>> IdentityFile ~/.ssh/id_rsa
>>>
>>> I have even tried running ssh-agent . exe, adding id_rsa1 to that and then
>>> running the git clone with no result.
>>>
>>> The weird thing is, I have two public keys as well and they both load in the
>>> ssh . exe (they return errors about format), I just cannot get my ssh . exe
>>> to work with multiple private keys.
>>>
>>> Has anyone got any ideas on how to solve this?

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: How to use multiple SSH keys on Git exe (not bash)
  2018-01-10 16:01     ` Sam Millman
@ 2018-01-10 16:14       ` Randall S. Becker
  0 siblings, 0 replies; 10+ messages in thread
From: Randall S. Becker @ 2018-01-10 16:14 UTC (permalink / raw)
  To: 'Sam Millman'; +Cc: git

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. Becker <rsbecker@nexbridge.com>
> wrote:
> > The ~/.ssh/config file is case sensitive by definition when it comes to Host
> and HostName. Try bitbucket.org for one and Bitbucket.org for another. You
> will have to change the remote URL accordingly to pick up the correct
> identity.

The combinatorics of it is Sum i=1 to n.(i) = 78.

You can also use BUtbucket.org, bUTbucket.org, etc., BUTbucket.org, etc., etc.

Hacky, maybe, but it has worked that way for a long time. Why do you need more than 78 identities? Bitbucket allows you to be on multiple projects with the same identity.


^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: How to use multiple SSH keys on Git exe (not bash)
  2018-01-10 16:02     ` Sam Millman
@ 2018-01-10 16:23       ` Randall S. Becker
  2018-01-10 16:26         ` Sam Millman
  0 siblings, 1 reply; 10+ messages in thread
From: Randall S. Becker @ 2018-01-10 16:23 UTC (permalink / raw)
  To: 'Sam Millman',
	'Ævar Arnfjörð Bjarmason'; +Cc: git

May I, with respect, ask you to take this to the OpenSSH email list? (openssh-unix-dev@mindrot.org)  I think the discussion better belongs there and you're likely to get more detailed information from that team.
Sincerely,
Randall

> -----Original Message-----
> From: git-owner@vger.kernel.org [mailto:git-owner@vger.kernel.org] On
> Behalf Of Sam Millman
> Sent: January 10, 2018 11:03 AM
> To: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
> 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
> 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 actually work, it seems it is the Host * that
> make sit work and it will actually iterate the keys and try them.
> 
> Not sure why this is, any thoughts?
> 
> On 10 January 2018 at 15:58, Ævar Arnfjörð Bjarmason <avarab@gmail.com>
> wrote:
> >
> > 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 bitucket . org
> >> IdentityFile ~/.ssh/id_rsa1
> >>
> >> Host bitbucket . org
> >> IdentityFile ~/.ssh/id_rsa
> >>
> >>
> >> And id_rsa1 works, I can actually pick from the other repo. But, of
> >> course, id_rsa does not now.
> >>
> >> I change to:
> >>
> >> Host bitucket . org-dd
> >> HostName bitbucket . org
> >> IdentityFile ~/.ssh/id_rsa1
> >>
> >> Host bitbucket . org-sas
> >> HostName bitbucket . org
> >> IdentityFile ~/.ssh/id_rsa
> >>
> >> And now only id_rsa works.
> >>
> >> I also tried combining the two IdentityFile lines together like so
> >> (for some reason):
> >>
> >> Host bitucket . org
> >> IdentityFile ~/.ssh/id_rsa1
> >> IdentityFile ~/.ssh/id_rsa
> >>
> >> I have even tried running ssh-agent . exe, adding id_rsa1 to that and
> >> then running the git clone with no result.
> >>
> >> The weird thing is, I have two public keys as well and they both load
> >> in the ssh . exe (they return errors about format), I just cannot get
> >> my ssh . exe to work with multiple private keys.
> >
> > This might just be a special case of the problem of some hosting
> > providers picking only the first key you provide, as described in this
> > thread:
> > https://public-inbox.org/git/20180103102840.27897-1-avarab@gmail.com/
> >
> > If so, you either need to hack around this with ssh host aliases, or a
> > custom GIT_SSH_COMMAND.
> >
> >> On 10 January 2018 at 15:29, Sam Millman <sam.millman@gmail.com>
> 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):
> >>>
> >>> Host bitucket . org
> >>> IdentityFile ~/.ssh/id_rsa1
> >>>
> >>> Host bitbucket . org
> >>> IdentityFile ~/.ssh/id_rsa
> >>>
> >>>
> >>> And id_rsa1 works, I can actually pick from the other repo. But, of
> >>> course, id_rsa does not now.
> >>>
> >>> I change to:
> >>>
> >>> Host bitucket . org-dd
> >>> HostName bitbucket . org
> >>> IdentityFile ~/.ssh/id_rsa1
> >>>
> >>> Host bitbucket . org-sas
> >>> HostName bitbucket . org
> >>> IdentityFile ~/.ssh/id_rsa
> >>>
> >>> And now only id_rsa works.
> >>>
> >>> I also tried combining the two IdentityFile lines together like so
> >>> (for some
> >>> reason):
> >>>
> >>> Host bitucket . org
> >>> IdentityFile ~/.ssh/id_rsa1
> >>> IdentityFile ~/.ssh/id_rsa
> >>>
> >>> I have even tried running ssh-agent . exe, adding id_rsa1 to that
> >>> and then running the git clone with no result.
> >>>
> >>> The weird thing is, I have two public keys as well and they both
> >>> load in the ssh . exe (they return errors about format), I just
> >>> cannot get my ssh . exe to work with multiple private keys.
> >>>
> >>> Has anyone got any ideas on how to solve this?


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: How to use multiple SSH keys on Git exe (not bash)
  2018-01-10 16:23       ` Randall S. Becker
@ 2018-01-10 16:26         ` Sam Millman
  2018-01-10 16:29           ` Randall S. Becker
  0 siblings, 1 reply; 10+ messages in thread
From: Sam Millman @ 2018-01-10 16:26 UTC (permalink / raw)
  To: Randall S. Becker; +Cc: Ævar Arnfjörð Bjarmason, git

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 <rsbecker@nexbridge.com> wrote:
> May I, with respect, ask you to take this to the OpenSSH email list? (openssh-unix-dev@mindrot.org)  I think the discussion better belongs there and you're likely to get more detailed information from that team.
> Sincerely,
> Randall
>
>> -----Original Message-----
>> From: git-owner@vger.kernel.org [mailto:git-owner@vger.kernel.org] On
>> Behalf Of Sam Millman
>> Sent: January 10, 2018 11:03 AM
>> To: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
>> 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
>> 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 actually work, it seems it is the Host * that
>> make sit work and it will actually iterate the keys and try them.
>>
>> Not sure why this is, any thoughts?
>>
>> On 10 January 2018 at 15:58, Ævar Arnfjörð Bjarmason <avarab@gmail.com>
>> wrote:
>> >
>> > 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 bitucket . org
>> >> IdentityFile ~/.ssh/id_rsa1
>> >>
>> >> Host bitbucket . org
>> >> IdentityFile ~/.ssh/id_rsa
>> >>
>> >>
>> >> And id_rsa1 works, I can actually pick from the other repo. But, of
>> >> course, id_rsa does not now.
>> >>
>> >> I change to:
>> >>
>> >> Host bitucket . org-dd
>> >> HostName bitbucket . org
>> >> IdentityFile ~/.ssh/id_rsa1
>> >>
>> >> Host bitbucket . org-sas
>> >> HostName bitbucket . org
>> >> IdentityFile ~/.ssh/id_rsa
>> >>
>> >> And now only id_rsa works.
>> >>
>> >> I also tried combining the two IdentityFile lines together like so
>> >> (for some reason):
>> >>
>> >> Host bitucket . org
>> >> IdentityFile ~/.ssh/id_rsa1
>> >> IdentityFile ~/.ssh/id_rsa
>> >>
>> >> I have even tried running ssh-agent . exe, adding id_rsa1 to that and
>> >> then running the git clone with no result.
>> >>
>> >> The weird thing is, I have two public keys as well and they both load
>> >> in the ssh . exe (they return errors about format), I just cannot get
>> >> my ssh . exe to work with multiple private keys.
>> >
>> > This might just be a special case of the problem of some hosting
>> > providers picking only the first key you provide, as described in this
>> > thread:
>> > https://public-inbox.org/git/20180103102840.27897-1-avarab@gmail.com/
>> >
>> > If so, you either need to hack around this with ssh host aliases, or a
>> > custom GIT_SSH_COMMAND.
>> >
>> >> On 10 January 2018 at 15:29, Sam Millman <sam.millman@gmail.com>
>> 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):
>> >>>
>> >>> Host bitucket . org
>> >>> IdentityFile ~/.ssh/id_rsa1
>> >>>
>> >>> Host bitbucket . org
>> >>> IdentityFile ~/.ssh/id_rsa
>> >>>
>> >>>
>> >>> And id_rsa1 works, I can actually pick from the other repo. But, of
>> >>> course, id_rsa does not now.
>> >>>
>> >>> I change to:
>> >>>
>> >>> Host bitucket . org-dd
>> >>> HostName bitbucket . org
>> >>> IdentityFile ~/.ssh/id_rsa1
>> >>>
>> >>> Host bitbucket . org-sas
>> >>> HostName bitbucket . org
>> >>> IdentityFile ~/.ssh/id_rsa
>> >>>
>> >>> And now only id_rsa works.
>> >>>
>> >>> I also tried combining the two IdentityFile lines together like so
>> >>> (for some
>> >>> reason):
>> >>>
>> >>> Host bitucket . org
>> >>> IdentityFile ~/.ssh/id_rsa1
>> >>> IdentityFile ~/.ssh/id_rsa
>> >>>
>> >>> I have even tried running ssh-agent . exe, adding id_rsa1 to that
>> >>> and then running the git clone with no result.
>> >>>
>> >>> The weird thing is, I have two public keys as well and they both
>> >>> load in the ssh . exe (they return errors about format), I just
>> >>> cannot get my ssh . exe to work with multiple private keys.
>> >>>
>> >>> Has anyone got any ideas on how to solve this?
>

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: How to use multiple SSH keys on Git exe (not bash)
  2018-01-10 16:26         ` Sam Millman
@ 2018-01-10 16:29           ` Randall S. Becker
  2018-01-10 16:32             ` Sam Millman
  0 siblings, 1 reply; 10+ messages in thread
From: Randall S. Becker @ 2018-01-10 16:29 UTC (permalink / raw)
  To: 'Sam Millman'
  Cc: 'Ævar Arnfjörð Bjarmason', git

OpenSSH generally. Other providers (and platform providers) exist as well. It is hard to know which is really involved, but not git.

> -----Original Message-----
> From: Sam Millman [mailto:sam.millman@gmail.com]
> Sent: January 10, 2018 11:26 AM
> To: Randall S. Becker <rsbecker@nexbridge.com>
> Cc: Ævar Arnfjörð Bjarmason <avarab@gmail.com>; 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 <rsbecker@nexbridge.com>
> wrote:
> > May I, with respect, ask you to take this to the OpenSSH email list?
> (openssh-unix-dev@mindrot.org)  I think the discussion better belongs there
> and you're likely to get more detailed information from that team.
> > Sincerely,
> > Randall
> >
> >> -----Original Message-----
> >> From: git-owner@vger.kernel.org [mailto:git-owner@vger.kernel.org] On
> >> Behalf Of Sam Millman
> >> Sent: January 10, 2018 11:03 AM
> >> To: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
> >> 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
> >> 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 actually work, it seems it is the
> >> Host * that make sit work and it will actually iterate the keys and try them.
> >>
> >> Not sure why this is, any thoughts?
> >>
> >> On 10 January 2018 at 15:58, Ævar Arnfjörð Bjarmason
> >> <avarab@gmail.com>
> >> wrote:
> >> >
> >> > 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 bitucket . org
> >> >> IdentityFile ~/.ssh/id_rsa1
> >> >>
> >> >> Host bitbucket . org
> >> >> IdentityFile ~/.ssh/id_rsa
> >> >>
> >> >>
> >> >> And id_rsa1 works, I can actually pick from the other repo. But,
> >> >> of course, id_rsa does not now.
> >> >>
> >> >> I change to:
> >> >>
> >> >> Host bitucket . org-dd
> >> >> HostName bitbucket . org
> >> >> IdentityFile ~/.ssh/id_rsa1
> >> >>
> >> >> Host bitbucket . org-sas
> >> >> HostName bitbucket . org
> >> >> IdentityFile ~/.ssh/id_rsa
> >> >>
> >> >> And now only id_rsa works.
> >> >>
> >> >> I also tried combining the two IdentityFile lines together like so
> >> >> (for some reason):
> >> >>
> >> >> Host bitucket . org
> >> >> IdentityFile ~/.ssh/id_rsa1
> >> >> IdentityFile ~/.ssh/id_rsa
> >> >>
> >> >> I have even tried running ssh-agent . exe, adding id_rsa1 to that
> >> >> and then running the git clone with no result.
> >> >>
> >> >> The weird thing is, I have two public keys as well and they both
> >> >> load in the ssh . exe (they return errors about format), I just
> >> >> cannot get my ssh . exe to work with multiple private keys.
> >> >
> >> > This might just be a special case of the problem of some hosting
> >> > providers picking only the first key you provide, as described in
> >> > this
> >> > thread:
> >> > https://public-inbox.org/git/20180103102840.27897-1-avarab@gmail.co
> >> > m/
> >> >
> >> > If so, you either need to hack around this with ssh host aliases,
> >> > or a custom GIT_SSH_COMMAND.
> >> >
> >> >> On 10 January 2018 at 15:29, Sam Millman <sam.millman@gmail.com>
> >> 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):
> >> >>>
> >> >>> Host bitucket . org
> >> >>> IdentityFile ~/.ssh/id_rsa1
> >> >>>
> >> >>> Host bitbucket . org
> >> >>> IdentityFile ~/.ssh/id_rsa
> >> >>>
> >> >>>
> >> >>> And id_rsa1 works, I can actually pick from the other repo. But,
> >> >>> of course, id_rsa does not now.
> >> >>>
> >> >>> I change to:
> >> >>>
> >> >>> Host bitucket . org-dd
> >> >>> HostName bitbucket . org
> >> >>> IdentityFile ~/.ssh/id_rsa1
> >> >>>
> >> >>> Host bitbucket . org-sas
> >> >>> HostName bitbucket . org
> >> >>> IdentityFile ~/.ssh/id_rsa
> >> >>>
> >> >>> And now only id_rsa works.
> >> >>>
> >> >>> I also tried combining the two IdentityFile lines together like
> >> >>> so (for some
> >> >>> reason):
> >> >>>
> >> >>> Host bitucket . org
> >> >>> IdentityFile ~/.ssh/id_rsa1
> >> >>> IdentityFile ~/.ssh/id_rsa
> >> >>>
> >> >>> I have even tried running ssh-agent . exe, adding id_rsa1 to that
> >> >>> and then running the git clone with no result.
> >> >>>
> >> >>> The weird thing is, I have two public keys as well and they both
> >> >>> load in the ssh . exe (they return errors about format), I just
> >> >>> cannot get my ssh . exe to work with multiple private keys.
> >> >>>
> >> >>> Has anyone got any ideas on how to solve this?
> >


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: How to use multiple SSH keys on Git exe (not bash)
  2018-01-10 16:29           ` Randall S. Becker
@ 2018-01-10 16:32             ` Sam Millman
  0 siblings, 0 replies; 10+ messages in thread
From: Sam Millman @ 2018-01-10 16:32 UTC (permalink / raw)
  To: Randall S. Becker; +Cc: Ævar Arnfjörð Bjarmason, git

Aha, thanks, I'll go annoy them :P

On 10 January 2018 at 16:29, Randall S. Becker <rsbecker@nexbridge.com> wrote:
> OpenSSH generally. Other providers (and platform providers) exist as well. It is hard to know which is really involved, but not git.
>
>> -----Original Message-----
>> From: Sam Millman [mailto:sam.millman@gmail.com]
>> Sent: January 10, 2018 11:26 AM
>> To: Randall S. Becker <rsbecker@nexbridge.com>
>> Cc: Ævar Arnfjörð Bjarmason <avarab@gmail.com>; 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 <rsbecker@nexbridge.com>
>> wrote:
>> > May I, with respect, ask you to take this to the OpenSSH email list?
>> (openssh-unix-dev@mindrot.org)  I think the discussion better belongs there
>> and you're likely to get more detailed information from that team.
>> > Sincerely,
>> > Randall
>> >
>> >> -----Original Message-----
>> >> From: git-owner@vger.kernel.org [mailto:git-owner@vger.kernel.org] On
>> >> Behalf Of Sam Millman
>> >> Sent: January 10, 2018 11:03 AM
>> >> To: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
>> >> 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
>> >> 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 actually work, it seems it is the
>> >> Host * that make sit work and it will actually iterate the keys and try them.
>> >>
>> >> Not sure why this is, any thoughts?
>> >>
>> >> On 10 January 2018 at 15:58, Ævar Arnfjörð Bjarmason
>> >> <avarab@gmail.com>
>> >> wrote:
>> >> >
>> >> > 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 bitucket . org
>> >> >> IdentityFile ~/.ssh/id_rsa1
>> >> >>
>> >> >> Host bitbucket . org
>> >> >> IdentityFile ~/.ssh/id_rsa
>> >> >>
>> >> >>
>> >> >> And id_rsa1 works, I can actually pick from the other repo. But,
>> >> >> of course, id_rsa does not now.
>> >> >>
>> >> >> I change to:
>> >> >>
>> >> >> Host bitucket . org-dd
>> >> >> HostName bitbucket . org
>> >> >> IdentityFile ~/.ssh/id_rsa1
>> >> >>
>> >> >> Host bitbucket . org-sas
>> >> >> HostName bitbucket . org
>> >> >> IdentityFile ~/.ssh/id_rsa
>> >> >>
>> >> >> And now only id_rsa works.
>> >> >>
>> >> >> I also tried combining the two IdentityFile lines together like so
>> >> >> (for some reason):
>> >> >>
>> >> >> Host bitucket . org
>> >> >> IdentityFile ~/.ssh/id_rsa1
>> >> >> IdentityFile ~/.ssh/id_rsa
>> >> >>
>> >> >> I have even tried running ssh-agent . exe, adding id_rsa1 to that
>> >> >> and then running the git clone with no result.
>> >> >>
>> >> >> The weird thing is, I have two public keys as well and they both
>> >> >> load in the ssh . exe (they return errors about format), I just
>> >> >> cannot get my ssh . exe to work with multiple private keys.
>> >> >
>> >> > This might just be a special case of the problem of some hosting
>> >> > providers picking only the first key you provide, as described in
>> >> > this
>> >> > thread:
>> >> > https://public-inbox.org/git/20180103102840.27897-1-avarab@gmail.co
>> >> > m/
>> >> >
>> >> > If so, you either need to hack around this with ssh host aliases,
>> >> > or a custom GIT_SSH_COMMAND.
>> >> >
>> >> >> On 10 January 2018 at 15:29, Sam Millman <sam.millman@gmail.com>
>> >> 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):
>> >> >>>
>> >> >>> Host bitucket . org
>> >> >>> IdentityFile ~/.ssh/id_rsa1
>> >> >>>
>> >> >>> Host bitbucket . org
>> >> >>> IdentityFile ~/.ssh/id_rsa
>> >> >>>
>> >> >>>
>> >> >>> And id_rsa1 works, I can actually pick from the other repo. But,
>> >> >>> of course, id_rsa does not now.
>> >> >>>
>> >> >>> I change to:
>> >> >>>
>> >> >>> Host bitucket . org-dd
>> >> >>> HostName bitbucket . org
>> >> >>> IdentityFile ~/.ssh/id_rsa1
>> >> >>>
>> >> >>> Host bitbucket . org-sas
>> >> >>> HostName bitbucket . org
>> >> >>> IdentityFile ~/.ssh/id_rsa
>> >> >>>
>> >> >>> And now only id_rsa works.
>> >> >>>
>> >> >>> I also tried combining the two IdentityFile lines together like
>> >> >>> so (for some
>> >> >>> reason):
>> >> >>>
>> >> >>> Host bitucket . org
>> >> >>> IdentityFile ~/.ssh/id_rsa1
>> >> >>> IdentityFile ~/.ssh/id_rsa
>> >> >>>
>> >> >>> I have even tried running ssh-agent . exe, adding id_rsa1 to that
>> >> >>> and then running the git clone with no result.
>> >> >>>
>> >> >>> The weird thing is, I have two public keys as well and they both
>> >> >>> load in the ssh . exe (they return errors about format), I just
>> >> >>> cannot get my ssh . exe to work with multiple private keys.
>> >> >>>
>> >> >>> Has anyone got any ideas on how to solve this?
>> >
>

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2018-01-10 16:32 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CALKyTE7+qJSYHQRB44HjHXK_EjOxNnCfQOROSDVVwAFR-gMnXQ@mail.gmail.com>
2018-01-10 15:30 ` How to use multiple SSH keys on Git exe (not bash) Sam Millman
2018-01-10 15:58   ` Randall S. Becker
2018-01-10 16:01     ` Sam Millman
2018-01-10 16:14       ` Randall S. Becker
2018-01-10 15:58   ` Ævar Arnfjörð Bjarmason
2018-01-10 16:02     ` Sam Millman
2018-01-10 16:23       ` Randall S. Becker
2018-01-10 16:26         ` Sam Millman
2018-01-10 16:29           ` Randall S. Becker
2018-01-10 16:32             ` Sam Millman

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).