Community technical support mailing list was retired 2010 and replaced with a professional technical support team. For assistance please contact: Pre-sales Technical support via email to sales@march-hare.com.
Keith D. Zimmerman wrote: > So we would be able to do > cvs -d :local:/ewcode co all > > Where ewcode maps to /e//network/g-drive/cvsrepo/ewcode? Not for local mode (which is special). However for server modes, which ssh uses (it executes 'cvs server' on the remote end) this will work. You can force it in local mode with: cvs -D e:/network/g-drive/cvsrepo -d :local:/ewcode co all Which could be done using a batch file, if you really need it: @cvs -D e:/network/g-drive/cvsrepo %* Tony