]> arthur.barton.de Git - ngircd-alex.git/blob - doc/CVS.txt
Clean up files for "ngircd-full" package, too ...
[ngircd-alex.git] / doc / CVS.txt
1
2                      ngIRCd - Next Generation IRC Server
3
4                       (c)2001-2003 by Alexander Barton,
5                     alex@barton.de, http://www.barton.de/
6
7                ngIRCd is free software and published under the
8                    terms of the GNU General Public License.
9
10                                  -- CVS.txt --
11
12
13 The source code of ngIRCd is maintained using the "Concurrent Versions
14 System" (CVS). Thereby several developers can work with the source tree at
15 the same time.
16
17
18 I. Anonymous read-only Access
19 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 To access the source tree anonymously in read-only mode, follow these steps:
21
22 Login to the CVS server:
23
24  $ cvs -d:pserver:anonymous@arthur.ath.cx:/usr/local/CVS/ngircd login
25
26 Use "anonymous" as user name and no password (just hit Return). Now you can
27 check out the sources:
28
29  $ cvs -d:pserver:anonymous@arthur.ath.cx:/usr/local/CVS/ngircd checkout ngircd
30
31 Thereby a new folder "ngircd" will be created containing all the individual
32 source files.
33
34 This is the "working folder", all CVS commands will be executed from within
35 this folder in the future.
36
37 Please note: When checking out a fresh copy of ngIRCd from CVS, the
38 configure script doesn't exist; you have to run the autogen.sh shell script
39 (which is included in the source tree) to generate it. This requires you to
40 have GNU automake and GNU autoconf installed on your system.
41
42 Updating the CVS tree:
43
44  $ cvs update -d -P [<filename>]
45
46 You can update a single file or the complete source tree.
47
48
49 III. Write Access
50 ~~~~~~~~~~~~~~~~~
51 If you want to contribute a couple of patches and write access to the CVS
52 repository would be handy, please contact Alex Barton, <alex@barton.de>.
53
54
55 -- 
56 $Id: CVS.txt,v 1.7 2003/03/26 22:34:33 alex Exp $