[BACK]Return to cvsrc.5 CVS log [TXT][DIR] Up to [local] / src / usr.bin / cvs

Annotation of src/usr.bin/cvs/cvsrc.5, Revision 1.2

1.2     ! jfb         1: .\"    $OpenBSD$
1.1       jfb         2: .\"
                      3: .\" Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
                      4: .\" All rights reserved.
                      5: .\"
                      6: .\" Redistribution and use in source and binary forms, with or without
                      7: .\" modification, are permitted provided that the following conditions
                      8: .\" are met:
                      9: .\"
                     10: .\" 1. Redistributions of source code must retain the above copyright
                     11: .\"    notice, this list of conditions and the following disclaimer.
                     12: .\" 2. The name of the author may not be used to endorse or promote products
                     13: .\"    derived from this software without specific prior written permission.
                     14: .\"
                     15: .\" THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
                     16: .\" INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
                     17: .\" AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
                     18: .\" THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
                     19: .\" EXEMPLARY, OR CONSEQUENTIAL  DAMAGES (INCLUDING, BUT NOT LIMITED TO,
                     20: .\" PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
                     21: .\" OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
                     22: .\" WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
                     23: .\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
                     24: .\" ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
                     25: .\"
                     26: .Dd June 14, 2004
                     27: .Dt CVSRC 5
                     28: .Os
                     29: .Sh NAME
                     30: .Nm cvsrc
                     31: .Nd startup resource file for CVS
                     32: .Sh DESCRIPTION
                     33: The cvsrc file provides a way to give the
                     34: .Xr cvs 1
                     35: program implicit global options and command-specific options.
                     36: The file is read on startup unless the
                     37: .Fl f
                     38: option is specified.
                     39: .Pp
                     40: The format of each line is as follows:
                     41: .Pp
                     42: .Dl command [arg ...]
                     43: .Pp
                     44: where
                     45: .Ar command
                     46: is either the `cvs' keyword to specify global options, one of the supported
                     47: .Xr cvs 1
                     48: commands or a command alias.
                     49: Arguments following
                     50: .Ar command
                     51: will be added implicitly to the appropriate command's argument vector if it is
                     52: run.
                     53: Empty lines and lines specifying no optional arguments are ignored.
                     54: Lines whose
                     55: .Ar command
                     56: argument is not a valid command will generate a warning when running without
                     57: the
                     58: .Fl q
                     59: or
                     60: .Fl Q
                     61: flags.
                     62: .Sh EXAMPLES
                     63: Need to put in some examples!
                     64: .Sh SEE ALSO
                     65: .Xr cvs 1