commit 248f8e0b7036b113e0d5a4b66f4b7d2db68a038f from: Florian Westphal via: Alexander Barton date: Sat Apr 12 19:51:15 2008 UTC Convert CVS commands to their git equivalents. Also mention that patches should be sent to the mailing list. commit - 7b33424c13455d9d5ec1958525ef1b2cbf8b4c90 commit + 248f8e0b7036b113e0d5a4b66f4b7d2db68a038f blob - 814d807cb0110a5ac6ff9b2e82b1a48a77e1ca67 (mode 644) blob + /dev/null --- doc/CVS.txt +++ /dev/null @@ -1,57 +0,0 @@ - - ngIRCd - Next Generation IRC Server - - (c)2001-2006 Alexander Barton, - alex@barton.de, http://www.barton.de/ - - ngIRCd is free software and published under the - terms of the GNU General Public License. - - -- CVS.txt -- - - -The source code of ngIRCd is maintained using the "Concurrent Versions -System" (CVS). Thereby several developers can work with the source tree at -the same time. - - -I. Anonymous read-only Access -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -To access the source tree anonymously in read-only mode, follow these steps: - -Login to the CVS server: - - $ cvs -d:pserver:anonymous@ngircd.barton.de:/srv/cvs/ngircd login - -Use "anonymous" as user name and no password (just hit Return). Now you can -check out the sources: - - $ cvs -d:pserver:anonymous@ngircd.barton.de:/srv/cvs/ngircd checkout ngircd - -Thereby a new folder "ngircd" will be created containing all the individual -source files. (Substitute the last "ngircd" with "website" to check out all -the files of the homepage of ngIRCd.) - -The newly created folder ("ngircd" or "website") is the "working folder", all -CVS commands will be executed from within this folder in the future. - -Please note: When checking out a fresh copy of ngIRCd from CVS, the -configure script doesn't exist; you have to run the autogen.sh shell script -(which is included in the source tree) to generate it. This requires you to -have GNU automake and GNU autoconf installed on your system. - -Updating the CVS tree: - - $ cvs update -d -P [] - -You can update a single file or the complete source tree. - - -II. Write Access -~~~~~~~~~~~~~~~~ -If you want to contribute a couple of patches and write access to the CVS -repository would be handy, please contact Alex Barton, . - - --- -$Id: CVS.txt,v 1.9 2006/08/03 14:37:29 alex Exp $ blob - /dev/null blob + c42696d75c75d19c317d4f73ba0ec95abb8cc1bc (mode 644) --- /dev/null +++ doc/GIT.txt @@ -0,0 +1,45 @@ + ngIRCd - Next Generation IRC Server + + -- GIT.txt -- + +The source code of ngIRCd is maintained using git, the stupid content +tracker. + +I. Getting the source code +~~~~~~~~~~~~~~~~~~~~~~~~~~ +To access the source tree anonymously, run: + + $ git clone git://ngircd.barton.de/ngircd.git + +Thereby a new folder "ngircd" will be created containing all the individual +source files. + +The newly created directory ("ngircd") is the "working directory", all +git commands will be executed from within this directory in the future. + +Please note: When checking out a fresh copy of ngIRCd using git, the +configure script doesn't exist; you have to run the autogen.sh shell script +(which is included in the source tree) to generate it. This requires you to +have GNU automake and GNU autoconf installed on your system. + +To update the git tree: + + $ git pull + +This retrieves all changes and merges them into the current branch. + +II. Contributing +~~~~~~~~~~~~~~~~ + +Patches should be sent to the ngircd mailing list. List homepage: +http://arthur.barton.de/mailman/listinfo/ngircd-ml + +If you do not want to send them to the list, you can also mail them +to Alex Barton, . + + +III. Write Access +~~~~~~~~~~~~~~~~~ +If you want to contribute a couple of patches and write access to the git +repository would be handy, please contact Alex Barton, . +