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

File: [local] / src / usr.bin / cvs / Attic / cvsrc.5 (download)

Revision 1.3, Tue Dec 14 00:12:31 2004 UTC (19 years, 6 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_7_BASE, OPENBSD_3_7
Changes since 1.2: +19 -5 lines

move the cvsrc example stuff to cvsrc.5;
make it clearer that $HOME/.cvsrc is the user config file;
add a reference to cvsrc(5) in cvs(1) SEE ALSO;

ok xsa@ (actually this started life as a diff from him...)

.\"	$OpenBSD: cvsrc.5,v 1.3 2004/12/14 00:12:31 jmc Exp $
.\"
.\" Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\"
.\" 1. Redistributions of source code must retain the above copyright
.\"    notice, this list of conditions and the following disclaimer.
.\" 2. The name of the author may not be used to endorse or promote products
.\"    derived from this software without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
.\" INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
.\" AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
.\" THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
.\" EXEMPLARY, OR CONSEQUENTIAL  DAMAGES (INCLUDING, BUT NOT LIMITED TO,
.\" PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
.\" OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
.\" WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
.\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
.\" ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
.Dd June 14, 2004
.Dt CVSRC 5
.Os
.Sh NAME
.Nm cvsrc
.Nd startup resource file for CVS
.Sh DESCRIPTION
The
.Nm
file provides a way to give the
.Xr cvs 1
program implicit global options and command-specific options.
Unless the
.Fl f
option is specified,
.Xr cvs 1
reads its startup configuration file
.Pa .cvsrc
from the home directory of the user who invoked it.
.Pp
The format of each line is as follows:
.Pp
.Dl command [arg ...]
.Pp
where
.Ar command
is either the `cvs' keyword to specify global options, one of the supported
.Xr cvs 1
commands or a command alias.
Arguments following
.Ar command
will be added implicitly to the appropriate command's argument vector if it is
run.
Empty lines and lines specifying no optional arguments are ignored.
Lines whose
.Ar command
argument is not a valid command will generate a warning when running without
the
.Fl q
or
.Fl Q
flags.
.Sh EXAMPLES
Specify that
.Xr cvs 1
should always run in quiet mode and the
.Ic diff
internal command should always produce unified output:
.Bd -literal -offset indent
cvs -q
diff -u
.Ed
.Sh SEE ALSO
.Xr cvs 1