]> arthur.barton.de Git - ngircd-alex.git/blob - doc/CVS.txt
Synchronized documentation with branch-0-10-x ...
[ngircd-alex.git] / doc / CVS.txt
1
2                      ngIRCd - Next Generation IRC Server
3
4                         (c)2001-2006 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@ngircd.barton.de:/srv/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@ngircd.barton.de:/srv/cvs/ngircd checkout ngircd
30
31 Thereby a new folder "ngircd" will be created containing all the individual
32 source files. (Substitute the last "ngircd" with "website" to check out all
33 the files of the homepage of ngIRCd.)
34
35 The newly created folder ("ngircd" or "website") is the "working folder", all
36 CVS commands will be executed from within this folder in the future.
37
38 Please note: When checking out a fresh copy of ngIRCd from CVS, the
39 configure script doesn't exist; you have to run the autogen.sh shell script
40 (which is included in the source tree) to generate it. This requires you to
41 have GNU automake and GNU autoconf installed on your system.
42
43 Updating the CVS tree:
44
45  $ cvs update -d -P [<filename>]
46
47 You can update a single file or the complete source tree.
48
49
50 II. Write Access
51 ~~~~~~~~~~~~~~~~
52 If you want to contribute a couple of patches and write access to the CVS
53 repository would be handy, please contact Alex Barton, <alex@barton.de>.
54
55
56 -- 
57 $Id: CVS.txt,v 1.9 2006/08/03 14:37:29 alex Exp $