Re: Help with SSH Sourceforge setup
James Amundson <[email protected]>
| Newsgroups | gmane.lisp.clocc.devel |
|---|---|
| Message-ID | <1019754292.3528.36.camel@abacus> |
On Thu, 2002-04-25 at 09:08, Marco Antoniotti wrote: > Thanks for the tip. It turns out I did upgrade OpenSSH. I was able > to test that I can connect to the Sourceforge site with > > ssh -1 [email protected] > > Given this, I eagerly set CVS_RSH to 'ssh -1', which made CVS bomb :} > > I know I am a pain in the whatever, but please spare me the RTFM :) 1) CVS_RSH cannot contains arguments like "-1". If you need to pass arguments to ssh for use with cvs, you will have to create a script to call ssh with arguments, then point CVS_RSH to that. It's one of the painful parts of CVS. 2) Fortunately, there is an easier solution. Create a file ~/.ssh/config and add the following lines to it: Host * Protocol 1 I will lead substituting host names for * as an exercise to the reader. I hope this helps. --Jim Amundson