Differences between revisions 1 and 7 (spanning 6 versions)
Revision 1 as of 2004-07-30 11:50:26
Size: 892
Editor: DavidTuch
Comment: Added CVS Checkout
Revision 7 as of 2004-08-09 16:11:40
Size: 1102
Editor: DavidTuch
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= CVS Checkout = #pragma section-numbers on

[[Navigation(children)]]

'''Index'''

[[TableOfContents]]

=== Medical Image Format FAQ ===
[http://www.dclunie.com/medical-image-faq/html Medical Image Format FAQ]

=== CVS Checkout ===

Navigation(children)

Index

TableOfContents

1. Medical Image Format FAQ

[http://www.dclunie.com/medical-image-faq/html Medical Image Format FAQ]

2. CVS Checkout

There are several ways to do: pserver, ext, kserver, gserver. See, e.g. Chapter 2 of [http://cvsbook.red-bean.com/cvsbook.html Open Source Development with CVS] by K. Fogel and M. Bar (2nd Edition, Coriolis Group, 2001).

pserver

cvs -d :pserver:tosa@cvs.foobar.com:/space/repo/1/dev login

where username is "tosa" on the server "cvs.foobar.com". The cvs depository is /space/repo/1/dev. You get asked about the password. Once you stored your authentication in .cvspass file, you can run other CVS commands using a similar way.

cvs -d :pserver:tosa@cvs.foobar.com:/space/repo/1/dev co dev

which checkout the entire directory dev into the current directory.

ext

export CVS_RSH=ssh BR cvs -d :ext:tosa@cvs.foobar.com:/space/repo/1/dev co dev

Note that even though CVS_RSH, we use ssh, which is a secure shell

DevelopersGuide (last edited 2023-09-13 15:46:41 by JacksonNolan)