On Sun, 7 Nov 2010, Basile Starynkevitch wrote: > Is it possible to access svn+ssh:gcc.gnu.org with two different keys? > What is the exact procedure? > > http://gcc.gnu.org/wiki/SSH_connection_caching is suggesting > ssh gcc.gnu.org appendkey -- does it work as I understand?
That is my understanding. Alternately, you could generate a key for accessing gcc.gnu.org and use that key both on your home system and your office system, for example doing something like Host gcc.gnu.org IdentityFile=~/.ssh/id_dsa-gcc.gnu.org in .ssh/config (assuming id_dsa-gcc.gnu.org is the private key for that specific key pair). Gerald