Home | History | Annotate | Line # | Download | only in dist
      1  1.1  christos 				CVS Kit
      2  1.1  christos 
      3  1.1  christos 	   Copyright (C) 1986-2005 Free Software Foundation, Inc.
      4  1.1  christos 
      5  1.1  christos 	   Portions Copyright (C) 1998-2005 Derek Price,
      6  1.1  christos 	                                    & Ximbiot <http://ximbiot.com>.
      7  1.1  christos 	   Portions Copyright (C) 1993-1994 Brian Berliner.
      8  1.1  christos 	   Portions Copyright (C) 1992 Brian Berliner and Jeff Polk.
      9  1.1  christos 	   Portions Copyright (C) 1989-1992 Brian Berliner.
     10  1.1  christos 	   All Rights Reserved
     11  1.1  christos 
     12  1.1  christos     This program is free software; you can redistribute it and/or modify
     13  1.1  christos     it under the terms of the GNU General Public License as published by
     14  1.1  christos     the Free Software Foundation; either version 1, or (at your option)
     15  1.1  christos     any later version.
     16  1.1  christos 
     17  1.1  christos     This program is distributed in the hope that it will be useful,
     18  1.1  christos     but WITHOUT ANY WARRANTY; without even the implied warranty of
     19  1.1  christos     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20  1.1  christos     GNU General Public License for more details.
     21  1.1  christos 
     22  1.1  christos -------------------------------------------------------------------------------
     23  1.1  christos 
     24  1.1  christos Welcome to CVS!
     25  1.1  christos 
     26  1.1  christos If you have problems or think you have found a bug in CVS, see the
     27  1.1  christos section BUGS in the CVS manual (also known as Version Management with
     28  1.1  christos CVS by Per Cederqvist et al, or cvs.texinfo--see below for details).
     29  1.1  christos 
     30  1.1  christos If you are thinking of submitting changes to CVS, see the
     31  1.1  christos file HACKING.
     32  1.1  christos 
     33  1.1  christos Please consult the INSTALL-CVS file for information on tested
     34  1.1  christos configurations.  If you have a comment about an already tested
     35  1.1  christos configuration, or have tried CVS on a new configuration, please let us
     36  1.1  christos know as described in INSTALL-CVS.  Free software only works if we all help
     37  1.1  christos out.
     38  1.1  christos 
     39  1.1  christos Finally, we cannot guarantee that this release will not completely wipe out
     40  1.1  christos all of your work from your system.  We do some simple testing before each
     41  1.1  christos release, but you are completely on your own.  We recommend testing this
     42  1.1  christos release on a source repository that is not critical to your work.  THIS
     43  1.1  christos SOFTWARE IS SUPPLIED COMPLETELY "AS IS".  NO WARRANTY....
     44  1.1  christos 
     45  1.1  christos Thanks for your support!
     46  1.1  christos 
     47  1.1  christos 	-The CVS Team
     48  1.1  christos 
     49  1.1  christos -------------------------------------------------------------------------------
     50  1.1  christos 
     51  1.1  christos What Is CVS?
     52  1.1  christos 
     53  1.1  christos CVS is a version control system, which allows you to keep old versions
     54  1.1  christos of files (usually source code), keep a log of who, when, and why
     55  1.1  christos changes occurred, etc., like RCS or SCCS.  It handles multiple
     56  1.1  christos developers, multiple directories, triggers to enable/log/control
     57  1.1  christos various operations, and can work over a wide area network.  The
     58  1.1  christos following tasks are not included; they can be done in conjunction with
     59  1.1  christos CVS but will tend to require some script-writing and software other
     60  1.1  christos than CVS: bug-tracking, build management (that is, make and make-like
     61  1.1  christos tools), and automated testing.
     62  1.1  christos 
     63  1.1  christos And a whole lot more.  See the manual for more information.
     64  1.1  christos 
     65  1.1  christos -------------------------------------------------------------------------------
     66  1.1  christos 
     67  1.1  christos Notes to people upgrading from a previous release of CVS:
     68  1.1  christos 
     69  1.1  christos See the NEWS file for a description of features new in this version.
     70  1.1  christos 
     71  1.1  christos See the Compatibility section of the manual for information on
     72  1.1  christos compatibility between CVS versions.  The quick summary is that as long
     73  1.1  christos as you not using the optional watch features, there are no
     74  1.1  christos compatibility problems with CVS 1.5 or later.
     75  1.1  christos 
     76  1.1  christos -------------------------------------------------------------------------------
     77  1.1  christos 
     78  1.1  christos Installation:
     79  1.1  christos 
     80  1.1  christos Please read the INSTALL-CVS file for installation instructions.  The brief
     81  1.1  christos summary is:
     82  1.1  christos 
     83  1.1  christos 	$ ./configure
     84  1.1  christos 	$ make
     85  1.1  christos 	(run the regression tests, if desired, via `make check')
     86  1.1  christos 	$ make install
     87  1.1  christos 	(create a repository if you don't already have one)
     88  1.1  christos 
     89  1.1  christos The documentation is in the doc subdirectory.  cvs.texinfo is the main
     90  1.1  christos manual; cvs.info* and cvs.ps are the info and postscript versions,
     91  1.1  christos respectively, generated from cvs.texinfo.  The postscript version is
     92  1.1  christos for US letter size paper; we do this not because we consider this size
     93  1.1  christos "better" than A4, but because we believe that the US letter version
     94  1.1  christos will print better on A4 paper than the other way around. If you want a
     95  1.1  christos version formatted for A4, add the line @afourpaper near the start of
     96  1.1  christos cvs.texinfo and re-generate cvs.ps using TeX.
     97  1.1  christos 
     98  1.1  christos -------------------------------------------------------------------------------
     99  1.1  christos 
    100  1.1  christos * How do I get up-to-date information and information about other
    101  1.1  christos versions of CVS?
    102  1.1  christos 
    103  1.1  christos See also 
    104  1.1  christos 	http://cvs.nongnu.org
    105  1.1  christos 	http://www.cvsnt.org
    106  1.1  christos 
    107  1.1  christos Anyone can add themselves to the following mailing lists:
    108  1.1  christos 
    109  1.1  christos     bug-cvs:  This is the list which users are requested to send bug reports
    110  1.1  christos       to.  General CVS development and design discussions also tend to take
    111  1.1  christos       place on this list.
    112  1.1  christos     info-cvs:  This list is intended for user questions, including general
    113  1.1  christos       help requests.
    114  1.1  christos     cvs-announce:  CVS release announcements and other major
    115  1.1  christos       announcements about the project are sent to this list.
    116  1.1  christos     cvs-announce-binaries:  Announcements are made to this list
    117  1.1  christos       when binaries for various platforms are built and initially
    118  1.1  christos       posted for download.
    119  1.1  christos 
    120  1.1  christos To subscribe to any of these lists, send mail to <list>-request (a] nongnu.org
    121  1.1  christos or visit http://savannah.nongnu.org/mail/?group=cvs and follow the instructions
    122  1.1  christos for the list you wish to subscribe to.
    123  1.1  christos 
    124  1.1  christos The newsgroup for CVS (and other configuration management systems) is
    125  1.1  christos comp.software.config-mgmt.  The gnu.cvs.help newsgroup is a 2-way mirror
    126  1.1  christos of the info-cvs (a] nongnu.org mailing list and gnu.cvs.bug is similarly a 2-way
    127  1.1  christos mirror of bug-cvs (a] nongnu.org.
    128  1.1  christos 
    129  1.1  christos -------------------------------------------------------------------------------
    130  1.1  christos 
    131  1.1  christos Credits:  See the AUTHORS file.
    132