search for: githom

Displaying 2 results from an estimated 2 matches for "githom".

Did you mean: githome
2014 Dec 10
2
URL path match in ssh config
Hi. I have few different gitorious' accounts (for different workplaces and my personal), like git at gitorious.org:foo/foo.git git at gitorious.org:bar/bar.git I want to configure ssh to use different ssh keys for different repos. I try to do it with ~/.ssh/config. How I can match path? I want to get something like this: Match path foo/foo.git HostName gitorious.org User git
2014 Dec 11
2
URL path match in ssh config
??????, 10-???-2014 16:53:14 Ben Lindstrom ????????: > Why not do: > > host gitwork > HostName gitorious.org > User git > IdentityFile ~/.ssh/foo.key > > > host githome > HostName gitorious.org > User git > IdentityFile ~/.ssh/bar.key > > > As "Match" is a server side feature not a client feature. And the above > would mean you'd do: > > $ ssh gitwork:foo/foo.git > or > $ ssh githome:bar/bar.git > > I...