]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/cvs/man/cvs.1
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / cvs / man / cvs.1
1 \fBimport\fR.
2 .\" $FreeBSD$
3 .de Id
4 .ds Rv \\$3
5 .ds Dt \\$4
6 ..
7 .TH CVS 1 "\*(Dt"
8 .\" Full space in nroff; half space in troff
9 .de SP
10 .if n .sp
11 .if t .sp .5
12 ..
13 .\" quoted command
14 .de `
15 .RB ` "\|\\$1\|" '\\$2
16 ..
17 .SH "NAME"
18 cvs \- Concurrent Versions System
19 .SH "SYNOPSIS"
20 .TP
21 \fBcvs\fP [ \fIcvs_options\fP ]
22 .I cvs_command
23 [
24 .I command_options
25 ] [
26 .I command_args
27 ]
28 .SH "NOTE"
29 This manpage is a summary of some of the features of
30 .B cvs
31 but it may no longer be kept up-to-date.  
32 For more current and in-depth documentation, please consult the
33 Cederqvist manual (via the
34 .B info cvs
35 command or otherwise,
36 as described in the SEE ALSO section of this manpage).
37 .SH "DESCRIPTION"
38 .IX "revision control system" "\fLcvs\fR"
39 .IX  cvs  ""  "\fLcvs\fP \- concurrent versions system"
40 .IX  "concurrent versions system \- \fLcvs\fP"
41 .IX  "release control system"  "cvs command"  ""  "\fLcvs\fP \- concurrent versions system"
42 .IX  "source control system"  "cvs command"  ""  "\fLcvs\fP \- concurrent versions system"
43 .IX  revisions  "cvs command"  ""  "\fLcvs\fP \- source control"
44 CVS is a version control system, which allows you to keep old versions
45 of files (usually source code), keep a log of who, when, and why
46 changes occurred, etc., like RCS or SCCS.  Unlike the simpler systems,
47 CVS does not just operate on one file at a time or one directory at a
48 time, but operates on hierarchical collections of directories
49 consisting of version controlled files.  CVS helps to manage releases
50 and to control the concurrent editing of source files among multiple
51 authors.  CVS allows triggers to enable/log/control various
52 operations and works well over a wide area network.
53 .SP
54 .B cvs
55 keeps a single copy of the master sources.
56 This copy is called the source ``repository''; it contains all the
57 information to permit extracting previous software releases at any
58 time based on either a symbolic revision tag, or a date in the past.
59 .SH "ESSENTIAL COMMANDS"
60 .B cvs
61 provides a rich variety of commands (\fIcvs_command\fP in the
62 Synopsis), each of which often has a wealth of options, to satisfy the
63 many needs of source management in distributed environments.  However,
64 you don't have to master every detail to do useful work with
65 .BR cvs ;
66 in fact, five commands are sufficient to use (and contribute to)
67 the source repository.
68 .TP
69 \fBcvs checkout\fP \fImodules\fP\|.\|.\|.
70 A necessary preliminary for most \fBcvs\fP work: creates your private
71 copy of the source for \fImodules\fP (named collections of source; you
72 can also use a path relative to the source repository here).  You can
73 work with this copy without interfering with others' work.  At least
74 one subdirectory level is always created.
75 .TP
76 .B cvs update
77 Execute this command from \fIwithin\fP your private source
78 directory when you wish to update your copies of source files from
79 changes that other developers have made to the source in the
80 repository.
81 .TP
82 \fBcvs add\fP \fIfile\fP\|.\|.\|.
83 Use this command to enroll new files in \fBcvs\fP records of your
84 working directory.  The files will be added to the repository the next
85 time you run
86 .` "cvs commit".
87 Note:
88 You should use the
89 .` "cvs import"
90 command to bootstrap new sources into the source repository.
91 .` "cvs add"
92 is only used for new files to an already checked-out module.
93 .TP
94 \fBcvs remove\fP \fIfile\fP\|.\|.\|.
95 Use this command (after erasing any files listed) to declare that you
96 wish to eliminate files from the repository.  The removal does not
97 affect others until you run
98 .` "cvs commit".
99 .TP
100 \fBcvs commit\fP \fIfile\fP\|.\|.\|.
101 Use this command when you wish to ``publish'' your changes to other
102 developers, by incorporating them in the source repository.
103 .SH "OPTIONS"
104 The
105 .B cvs
106 command line can include
107 .IR cvs_options ,
108 which apply to the overall
109 .B cvs
110 program; a
111 .IR cvs_command ,
112 which specifies a particular action on the source repository; and
113 .I command_options
114 and
115 .I command_arguments
116 to fully specify what the
117 .I cvs_command
118 will do.
119 .SP
120 .I Warning:
121 you must be careful of precisely where you place options relative to the
122 .IR cvs_command .
123 The same option can mean different things depending on whether it
124 is in the
125 .I cvs_options
126 position (to the left of a
127 .B cvs
128 command) or in the
129 .I command_options
130 position (to the right of a
131 .B cvs
132 command).
133 .SP
134 There are only two situations where you may omit
135 .IR cvs_command :
136 .` "cvs \-H"
137 or
138 .` "cvs --help"
139 elicits a list of available commands, and
140 .` "cvs \-v"
141 or
142 .` "cvs --version"
143 displays version information on \fBcvs\fP itself.
144 .SP
145 .SH "CVS OPTIONS"
146 As of release 1.6,
147 .B cvs
148 supports
149 .SM GNU
150 style long options as well as short options.  Only
151 a few long options are currently supported, these are listed in
152 brackets after the short options whose functions they duplicate.
153 .SP
154 Use these options to control the overall
155 .B cvs
156 program:
157 .TP
158 .B \-H [ --help ]
159 Display usage information about the specified
160 .I cvs_command
161 (but do not actually execute the command).  If you don't specify a
162 command name,
163 .` "cvs \-H"
164 displays a summary of all the commands available.
165 .TP
166 .B \-Q
167 Causes the command to be
168 .I really
169 quiet; the command will generate output only for serious problems.
170 .TP
171 .B \-q
172 Causes the command to be somewhat quiet; informational messages, such
173 as reports of recursion through subdirectories, are suppressed.
174 .TP
175 \fB\-b\fP \fIbindir\fP
176 Use
177 .I bindir
178 as the directory where
179 .SM RCS
180 programs are located (CVS 1.9 and older).
181 Overrides the setting of the
182 .SM RCSBIN
183 environment variable.
184 This value should be specified as an absolute pathname.
185 .TP
186 \fB\-d\fP \fICVS_root_directory\fP
187 Use
188 .I CVS_root_directory
189 as the root directory pathname of the master
190 source repository.
191 Overrides the setting of the
192 .SM CVSROOT
193 environment variable.
194 This value should be specified as an absolute pathname.
195 .TP
196 \fB\-e\fP \fIeditor\fP
197 Use
198 .I editor
199 to enter revision log information.
200 Overrides the setting of the
201 .SM CVSEDITOR\c
202 ,
203 .SM VISUAL\c
204 , and
205 .SM EDITOR
206 environment variables.
207 .TP
208 .B \-f
209 Do not read the
210 .B cvs
211 startup file (\fI~/.cvsrc\fP).
212 .TP
213 .B \-n
214 Do not change any files.  Attempt to execute the
215 .IR cvs_command ,
216 but only to issue reports; do not remove, update, or merge any
217 existing files, or create any new files.
218 .TP
219 .B \-t
220 Trace program execution; display messages showing the steps of
221 .B cvs
222 activity.  Particularly useful with
223 .B \-n
224 to explore the potential impact of an unfamiliar command.
225 .TP
226 .B \-r
227 Makes new working files read-only.
228 Same effect as if the
229 .SM CVSREAD
230 environment variable is set.
231 .TP
232 .B \-R
233 Turns on read-only repository mode.  This allows one to check out from a
234 read-only repository, such as within an anoncvs server, or from a CDROM
235 repository.
236 Same effect as if the
237 .SM CVSREADONLYFS
238 environment variable is set.  Using
239 .B \-R
240 can also considerably speed up checkout's over NFS.
241 .TP
242 .B \-v [ --version ]
243 Displays version and copyright information for
244 .BR cvs .
245 .TP
246 .B \-w
247 Makes new working files read-write (default).
248 Overrides the setting of the
249 .SM CVSREAD
250 environment variable.
251 .TP
252 .B \-g
253 Forces group-write perms on working files.  This option is typically
254 used when you have multiple users sharing a single checked out source
255 tree, allowing them to operate their shells with a less dangerous umask.
256 To use this feature, create a directory to hold the checked-out source
257 tree, set it to a private group, and set up the directory such that
258 files created under it inherit the group id of the directory.  This occurs 
259 automatically with FreeBSD.  With SysV you must typically set the SGID bit
260 on the directory.  The users who are to share the checked out tree must
261 be placed in that group.  Note that the sharing of a single checked-out
262 source tree is very different from giving several users access to a common
263 CVS repository.  Access to a common CVS repository already maintains shared
264 group-write perms and does not require this option.
265
266 To use the option transparently, simply place the line 'cvs -g' in your
267 ~/.cvsrc file.  Doing this is not recommended unless you firewall all your
268 source checkouts within a private group or within a private mode 0700
269 directory.
270 .TP
271 .B \-x
272 Encrypt all communication between the client and the server.  As of
273 this writing, this is only implemented when using a Kerberos
274 connection.
275 .TP
276 \fB\-z\fP \fIcompression\-level\fP
277 When transferring files across the network use
278 .B gzip
279 with compression level \fIcompression\-level\fP to compress and
280 de-compress data as it is transferred.  Requires the presence of
281 the
282 .SM GNU
283 .B gzip
284 program in the current search path at both ends of the link.
285 .SH "USAGE"
286 Except when requesting general help with
287 .` "cvs \-H",
288 you must specify a
289 .I cvs_command
290 to
291 .B cvs
292 to select a specific release control function to perform.
293 Each
294 .B cvs
295 command accepts its own collection of options and arguments.
296 However, many options are available across several commands.
297 You can display a usage summary for each command by specifying the
298 .B \-H
299 option with the command.
300 .SH "CVS STARTUP FILE"
301 Normally, when CVS starts up, it reads the
302 .I .cvsrc
303 file from the home directory of the user reading it.  This startup
304 procedure can be turned off with the
305 .B \-f
306 flag.
307 .SP
308 The
309 .I .cvsrc
310 file lists CVS commands with a list of arguments, one command per
311 line.  For example, the following line in \fI.cvsrc\fP:
312 .SP
313 diff \-c
314 .SP
315 will mean that the
316 .` "cvs diff"
317 command will always be passed the \-c option in addition to any
318 other options that are specified in the command line (in this case
319 it will have the effect of producing context sensitive diffs for
320 all executions of
321 .` "cvs diff"
322 ).
323 .SP
324 Global options are specified using the \fBcvs\fP keyword.  For example,
325 the following:
326 .SP
327 cvs \-q
328 .SP
329 will mean that all
330 .` "cvs"
331 commands will behave as thought he \-q global option had been supplied.
332 .SH "CVS COMMAND SUMMARY"
333 Here are brief descriptions of all the
334 .B cvs
335 commands:
336 .TP
337 .B add
338 Add a new file or directory to the repository, pending a
339 .` "cvs commit"
340 on the same file.
341 Can only be done from within sources created by a previous
342 .` "cvs checkout"
343 invocation.
344 Use
345 .` "cvs import"
346 to place whole new hierarchies of sources under
347 .B cvs
348 control.
349 (Does not directly affect repository; changes
350 working directory.)
351 .TP
352 .B admin
353 Execute
354 control functions on the source repository.  (Changes
355 repository directly; uses working directory without changing it.)
356 .TP
357 .B checkout
358 Make a working directory of source files for editing.  (Creates or changes
359 working directory.)
360 .TP
361 .B commit
362 Apply to the source repository changes, additions, and deletions from your
363 working directory.  (Changes repository.)
364 .TP
365 .B diff
366 Show differences between files in working directory and source
367 repository, or between two revisions in source repository.
368 (Does not change either repository or working directory.)
369 .TP
370 .B export
371 Prepare copies of a set of source files for shipment off site.
372 Differs from
373 .` "cvs checkout"
374 in that no
375 .B cvs
376 administrative directories are created (and therefore
377 .` "cvs commit"
378 cannot be executed from a directory prepared with
379 .` "cvs export"),
380 and a symbolic tag must be specified.
381 (Does not change repository; creates directory similar to working
382 directories).
383 .TP
384 .B history
385 Show reports on
386 .B cvs
387 commands that you or others have executed on a particular file or
388 directory in the source repository.  (Does not change repository or
389 working directory.)  History logs are kept only if enabled by creation
390 of the
391 .` "$CVSROOT/CVSROOT/history"
392 file; see
393 .BR cvs ( 5 ).
394 .TP
395 .B import
396 Incorporate a set of updates from off-site into the source repository,
397 as a ``vendor branch''.  (Changes repository.)
398 .TP
399 .B init
400 Initialize a repository by adding the CVSROOT subdirectory and some default
401 control files. You must use this command or initialize the repository in
402 some other way before you can use it.
403 .TP
404 .B log
405 Display
406 log information.
407 (Does not change repository or working directory.)
408 .TP
409 .B rdiff
410 Prepare a collection of diffs as a patch file between two releases in
411 the repository.  (Does not change repository or working directory.)
412 .TP
413 .B release
414 Cancel a
415 .` "cvs checkout",
416 abandoning any changes.
417 (Can delete working directory; no effect on repository.)
418 .TP
419 .B remove
420 Remove files from the source repository, pending a
421 .` "cvs commit"
422 on the same files.  (Does not directly affect repository;
423 changes working directory.)
424 .TP
425 .B rtag
426 Explicitly specify a symbolic tag for particular revisions of files in the
427 source repository.  See also
428 .` "cvs tag".
429 (Changes repository directly; does not require or affect
430 working directory.)
431 .TP
432 .B status
433 Show current status of files: latest version, version in working
434 directory, whether working version has been edited and, optionally,
435 symbolic tags in the
436 .SM RCS
437 file.  (Does not change
438 repository or working directory.)
439 .TP
440 .B tag
441 Specify a symbolic tag for files in the repository.  By default, tags
442 the revisions
443 that were last synchronized with your working directory.   (Changes
444 repository directly; uses working directory without changing it.)
445 .TP
446 .B update
447 Bring your working directory up to date with changes from the
448 repository.  Merges are performed automatically when possible; a
449 warning is issued if manual resolution is required for conflicting
450 changes.  (Changes working directory; does not change repository.)
451 .SH "COMMON COMMAND OPTIONS"
452 This section describes the
453 .I command_options
454 that are available across several
455 .B cvs
456 commands.  Not all commands support all of these options; each option
457 is only supported for commands where it makes sense.  However, when
458 a command has one of these options you can count on the same meaning
459 for the option as in other commands.  (Other command
460 options, which are listed with the individual commands, may have
461 different meanings from one
462 .B cvs
463 command to another.)
464 .I "Warning:"
465 the
466 .B history
467 command is an exception;
468 it supports many options that conflict
469 even with these standard options.
470 .TP
471 \fB\-D\fP \fIdate_spec\fP
472 Use the most recent revision no later than \fIdate_spec\fP (a single
473 argument, date description specifying a date in the
474 past).  A wide variety of date formats are supported, in particular
475 ISO ("1972-09-24 20:05") or Internet ("24 Sep 1972 20:05").
476 The \fIdate_spec\fP is interpreted as being in the local timezone, unless a
477 specific timezone is specified.
478 The specification is ``sticky'' when you use it to make a
479 private copy of a source file; that is, when you get a working file
480 using \fB\-D\fP, \fBcvs\fP records the date you
481 specified, so that further updates in the same directory will use the
482 same date (unless you explicitly override it; see the description of
483 the \fBupdate\fP command).
484 .B \-D
485 is available with the
486 .BR checkout ", " diff ", " history ", " export ", "
487 .BR rdiff ", " rtag ", and "
488 .B update
489 commands.
490 Examples of valid date specifications include:
491 .in +1i
492 .ft B
493 .nf
494 1 month ago
495 2 hours ago
496 400000 seconds ago
497 last year
498 last Monday
499 yesterday
500 a fortnight ago
501 3/31/92 10:00:07 PST
502 January 23, 1987 10:05pm
503 22:00 GMT
504 .fi
505 .ft P
506 .in -1i
507 .TP
508 .B \-f
509 When you specify a particular date or tag to \fBcvs\fP commands, they
510 normally ignore files that do not contain the tag (or did not exist on
511 the date) that you specified.  Use the \fB\-f\fP option if you want
512 files retrieved even when there is no match for the tag or date.  (The
513 most recent version is used in this situation.)
514 .B \-f
515 is available with these commands:
516 .BR checkout ", " export ", "
517 .BR rdiff ", " rtag ", and " update .
518 .TP
519 \fB\-k\fP \fIkflag\fP
520 Alter the default
521 processing of keywords.
522 The \fB\-k\fP option is available with the
523 .BR add ", " checkout ", " diff ", " rdiff ", " export ", and "
524 BR update
525 commands.  Your \fIkflag\fP specification is ``sticky'' when you use
526 it to create a private copy of a source file; that is, when you use
527 this option with the \fBcheckout\fP or \fBupdate\fP commands,
528 \fBcvs\fP associates your selected \fIkflag\fP with the file, and
529 continues to use it with future \fBupdate\fP commands on the same file
530 until you specify otherwise.
531 .SP
532 Some of the more useful \fIkflag\fPs are \-ko and \-kb (for binary files),
533 and \-kv which is useful for an
534 .B export
535 where you wish to retain keyword information after an
536 .B import
537 at some other site.
538 .TP
539 .B \-l
540 Local; run only in current working directory, rather than recurring through
541 subdirectories.   Available with the following commands:
542 .BR checkout ", " commit ", " diff ", "
543 .BR export ", " remove ", " rdiff ", " rtag ", "
544 .BR status ", " tag ", and " update .
545 .TP
546 .B \-n
547 Do
548 .I not
549 run any
550 .BR checkout / commit / tag / update
551 program.  (A program can be specified to run on each of these
552 activities, in the modules database; this option bypasses it.)
553 Available with the
554 .BR checkout ", " export ", and "
555 .B rtag
556 commands.
557 .I Warning:
558 this is not the same
559 as the overall
560 .` "cvs \-n"
561 option, which you can specify to the
562 .I left
563 of a
564 .B cvs
565 command!
566 .TP
567 .B \-P
568 Prune (remove) directories that are empty after being updated, on
569 .BR checkout ", or " update .
570 Normally, an empty directory (one that is void of revision-controlled
571 files) is left alone.
572 Specifying
573 .B \-P
574 will cause these directories to be silently removed from your checked-out
575 sources.
576 This does not remove the directory from the repository, only from your
577 checked out copy.
578 Note that this option is implied by the
579 .B \-r
580 or
581 .B \-D
582 options of
583 .BR checkout " and " export .
584 .TP
585 .B \-T
586 Create/Update CVS/Template by copying it from the (local) repository.
587 This option is useful for developers maintaining a local cvs repository
588 but committing to a remote repository.  By maintaining CVS/Template the
589 remote commits will still be able to bring up the proper template in the
590 commit editor session.
591 Available with the
592 .BR checkout " and " update
593 commands.
594 .TP
595 .B \-p
596 Pipe the files retrieved from the repository to standard output,
597 rather than writing them in the current directory.  Available with the
598 .BR checkout " and " update
599 commands.
600 .TP
601 \fB\-r\fP \fItag\fP
602 Use the revision specified by the
603 .I tag
604 argument instead of the default ``head'' revision.  As well as
605 arbitrary tags defined with the \fBtag\fP or \fBrtag\fP command, two
606 special tags are always available:
607 .` "HEAD"
608 refers to the most
609 recent version available in the repository, and
610 .` "BASE"
611 refers to the revision you last checked out into the current working
612 directory.
613 .SP
614 The \fItag\fP specification is ``sticky'' when you use
615 this option with
616 .` "cvs checkout"
617 or
618 .` "cvs update"
619 to
620 make your own copy of a file: \fBcvs\fP remembers the \fItag\fP and
621 continues to use it on future \fBupdate\fP commands, until you specify
622 otherwise.
623 .I tag
624 can be either a symbolic or numeric tag.
625 When a command expects a specific revision,
626 the name of a branch is interpreted as the most recent
627 revision on that branch.
628 Specifying the
629 .B \-q
630 global option along with the
631 .B \-r
632 command option is often useful, to suppress the warning messages when the
633 .SM RCS
634 file does not contain the specified tag.
635 .B \-r
636 is available with the
637 .BR annotate ", " checkout ", " 
638 .BR commit ", " diff ", " history ", " export ", " rdiff ", "
639 .BR rtag ", and " update
640 commands.
641 .I Warning:
642 this is not the same
643 as the overall
644 .` "cvs \-r"
645 option, which you can specify to the
646 .I left
647 of a
648 .B cvs
649 command!
650 .SH "CVS COMMANDS"
651 Here (finally) are details on all the
652 .B cvs
653 commands and the options each accepts.  The summary lines at the top
654 of each command's description highlight three kinds of things:
655 .TP 1i
656 \ \ \ \ Command Options and Arguments
657 Special options are described in detail below; common command options
658 may appear only in the summary line.
659 .TP 1i
660 \ \ \ \ Working Directory, or Repository?
661 Some \fBcvs\fP commands require a working directory to operate; some
662 require a repository.  Also, some commands \fIchange\fP the
663 repository, some change the working directory, and some change
664 nothing.
665 .TP 1i
666 \ \ \ \ Synonyms
667 Many commands have synonyms, which you may find easier to
668 remember (or type) than the principal name.
669 .PP
670 .TP
671 \fBadd\fP [\fB\-k\fP \fIkflag\fP] [\fB\-m '\fP\fImessage\fP\fB'\fP] \fIfiles.\|.\|.\fP
672 .I Requires:
673 repository, working directory.
674 .br
675 .I Changes:
676 working directory.
677 .br
678 .I Synonym:
679 .B new
680 .br
681 Use the
682 .B add
683 command to create a new file or directory in the
684 source repository.
685 The files or directories specified with
686 .B add
687 must already exist in the current directory (which must have been created
688 with the
689 .B checkout
690 command).
691 To add a whole new directory hierarchy to the source repository
692 (for example, files received from a third-party vendor), use the
693 .` "cvs import"
694 command instead.
695 .SP
696 If the argument to
697 .` "cvs add"
698 refers to an immediate sub-directory, the directory is
699 created at the correct place in the
700 source repository, and the necessary
701 .B cvs
702 administration files are created in your working directory.
703 If the directory already exists in the source repository,
704 .` "cvs add"
705 still creates the administration files in your version of the directory.
706 This allows you to use
707 .` "cvs add"
708 to add a particular directory to your private sources even if
709 someone else created that directory after your
710 .B checkout
711 of the sources.  You can do the following:
712 .SP
713 .in +1i
714 .ft B
715 .nf
716 example% mkdir new_directory
717 example% cvs add new_directory
718 example% cvs update new_directory
719 .fi
720 .ft P
721 .in -1i
722 .SP
723 An alternate approach using
724 .` "cvs update"
725 might be:
726 .SP
727 .in +1i
728 .ft B
729 .nf
730 example% cvs update -d new_directory
731 .fi
732 .ft P
733 .in -1i
734 .SP
735 (To add \fIany available\fP new directories to your working directory, it's
736 probably simpler to use
737 .` "cvs checkout"
738 or
739 .` "cvs update -d".)
740 .SP
741 The added files are not placed in the
742 source repository until you use
743 .` "cvs commit"
744 to make the change permanent.
745 Doing a
746 .` "cvs add"
747 on a file that was removed with the
748 .` "cvs remove"
749 command will resurrect the file, if no
750 .` "cvs commit"
751 command intervened.
752 .SP
753 You will have the opportunity to specify a logging message, as usual,
754 when you use
755 .` "cvs commit"
756 to make the new file permanent.  If you'd like to have another
757 logging message associated with just
758 .I creation
759 of the file (for example, to describe the file's purpose), you can
760 specify it with the
761 .` "\-m \fImessage\fP"
762 option to the
763 .B add
764 command.
765 .SP
766 The
767 .` "-k kflag"
768 option specifies the default way that this
769 file will be checked out.
770 The
771 .` "kflag"
772 argument is stored in the
773 .SM RCS
774 file and can be changed with
775 .` "cvs admin".
776 Specifying
777 .` "-ko"
778 is useful for checking in binaries that
779 shouldn't have
780 keywords expanded.
781 .TP
782 \fBadmin\fP [\fIrcs-options\fP] \fIfiles.\|.\|.\fP
783 .I Requires:
784 repository, working directory.
785 .br
786 .I Changes:
787 repository.
788 .br
789 .I Synonym:
790 .B rcs
791 .br
792 This is the
793 .B cvs
794 interface to assorted administrative
795 facilities, similar to
796 .BR rcs ( 1 ).
797 This command works recursively, so extreme care should be
798 used.
799 .TP
800 \fBcheckout\fP [\fBoptions\fP] \fImodules\fP.\|.\|.
801 .I Requires:
802 repository.
803 .br
804 .I Changes:
805 working directory.
806 .br
807 .I Synonyms:
808 .BR co ", " get
809 .br
810 Make a working directory containing copies of the source files specified by
811 .IR modules .
812 You must execute
813 .` "cvs checkout"
814 before using most of the other
815 .B cvs
816 commands, since most of them operate on your working directory.
817 .SP
818 \fImodules\fP are either symbolic names (themselves defined as the
819 module
820 .` "modules"
821 in the source repository; see
822 .BR cvs ( 5 ))
823 for some collection of source directories and files, or paths to
824 directories or files in the repository.
825 .SP
826 Depending on the
827 .I modules
828 you specify,
829 .B checkout
830 may recursively create directories and populate them with the appropriate
831 source files.
832 You can then edit these source files at any time (regardless of whether
833 other software developers are editing their own copies of the sources);
834 update them to include new changes applied by others to the source
835 repository; or commit your work as a permanent change to the
836 repository.
837 .SP
838 Note that
839 .B checkout
840 is used to create directories.
841 The top-level directory created is always added to the directory
842 where
843 .B checkout
844 is invoked, and usually has the same name as the specified
845 .IR module .
846 In the case of a
847 .I module
848 alias, the created sub-directory may have a different name, but you can be
849 sure that it will be a sub-directory, and that
850 .B checkout
851 will show the relative path leading to each file as it is extracted into
852 your private work area (unless you specify the
853 .B \-Q
854 global option).
855 .SP
856 Running
857 .` "cvs checkout"
858 on a directory that was already built by a prior
859 .B checkout
860 is also permitted, and
861 has the same effect as specifying the
862 .B \-d
863 option to the
864 .B update
865 command described below.
866 .SP
867 The
868 .I options
869 permitted with
870 .` "cvs checkout"
871 include the standard command options
872 .BR \-P ", " \-f ", "
873 .BI \-k " kflag"
874 \&,
875 .BR \-l ", " \-n ", " \-p ", "
876 .BR \-r
877 .IR tag ", and"
878 .BI \-D " date"\c
879 \&.
880 .SP
881 In addition to those, you can use these special command options
882 with
883 .BR checkout :
884 .SP
885 Use the
886 .B \-A
887 option to reset any sticky tags, dates, or
888 .B \-k
889 options.  (If you get a working file using one of the
890 \fB\-r\fP, \fB\-D\fP, or \fB\-k\fP options, \fBcvs\fP remembers the
891 corresponding tag, date, or \fIkflag\fP and continues using it on
892 future updates; use the \fB\-A\fP option to make \fBcvs\fP forget these
893 specifications, and retrieve the ``head'' version of the file).
894 Does not reset sticky
895 .B \-k
896 options on modified files.
897 .SP
898 The
899 .BI \-j " branch"
900 option merges the changes made between the
901 resulting revision and the revision that it is based on (e.g., if
902 the tag refers to a branch,
903 .B cvs
904 will merge all changes made in that branch into your working file).
905 .SP
906 With two \fB-j\fP options,
907 .B cvs
908 will merge in the changes between the two respective revisions.
909 This can be used to ``remove'' a certain delta from your working file.
910 .SP
911 In addition, each \fB-j\fP option can contain on optional date
912 specification which, when used with branches, can limit the chosen
913 revision to one within a specific date.
914 An optional date is specified by adding a colon (:) to the tag.
915 An example might be what
916 .` "cvs import"
917 tells you to do when you have
918 just imported sources that have conflicts with local changes:
919 .SP
920 .in +1i
921 .ft B
922 .nf
923 example% cvs checkout -jTAG:yesterday -jTAG module
924 .fi
925 .ft P
926 .in -1i
927 .SP
928 Use the
929 .B \-N
930 option with
931 .` "\-d \fIdir\fP"
932 to avoid shortening module paths in your working directory.   (Normally, \fBcvs\fP shortens paths as much as possible when you specify an explicit target directory.)
933 .SP
934 Use the
935 .B \-c
936 option to copy the module file, sorted, to the standard output,
937 instead of creating or modifying any files or directories in your
938 working directory.
939 .SP
940 Use the
941 .BI \-d " dir"
942 option to create a directory called
943 .I dir
944 for the working files, instead of using the module name.  Unless you
945 also use \fB\-N\fP, the paths created under \fIdir\fP will be as short
946 as possible.
947 .SP
948 Use the
949 .B \-s
950 option to display per-module status information stored with
951 the
952 .B \-s
953 option within the modules file. 
954 .TP
955 \fBcommit\fP [\fB\-lR\fP] [\fB\-m\fP '\fIlog_message\fP' | \fB\-F\fP \fIfile\fP] [\fB\-r\fP \fIrevision\fP] [\fIfiles.\|.\|.\fP]
956 .I Requires:
957 working directory, repository.
958 .br
959 .I Changes:
960 repository.
961 .br
962 .I Synonym:
963 .B ci
964 .br
965 Use
966 .` "cvs commit"
967 when you want to incorporate changes from your working source
968 files into the general source repository.
969 .SP
970 If you don't specify particular \fIfiles\fP to commit, all
971 of the files in your working current directory are examined.
972 .B commit
973 is careful to change in the repository only those files that you have
974 really changed.  By default (or if you explicitly specify the
975 .B \-R
976 option), files
977 in subdirectories are also examined and committed if they have
978 changed; you can use the
979 .B \-l
980 option to limit
981 .B commit
982 to the current directory only.
983 Sometimes you may want to force a file to be committed even though it
984 is unchanged; this is achieved with the
985 .B \-f
986 flag, which also has the effect of disabling recursion (you can turn
987 it back on with
988 .B \-R
989 of course).
990 .SP
991 .B commit
992 verifies that the selected files are up to date with the current revisions
993 in the source repository; it will notify you, and exit without
994 committing, if any of the specified files must be made current first
995 with
996 .` "cvs update".
997 .B commit
998 does not call the
999 .B update
1000 command for you, but rather leaves that for you to do when
1001 the time is right.
1002 .SP
1003 When all is well, an editor is invoked to allow you to enter a log
1004 message that will be written to one or more logging programs and placed in the
1005 source repository file.
1006 You can instead specify the log message on the command line with the
1007 .B \-m
1008 option, thus suppressing the editor invocation, or use the
1009 .B \-F
1010 option to specify that the argument \fIfile\fP contains the log message.
1011 .SP
1012 The
1013 .B \-r
1014 option can be used to commit to a particular symbolic or numeric revision.
1015 For example, to bring all your files up to the
1016 revision ``3.0'' (including those that haven't changed), you might do:
1017 .SP
1018 .in +1i
1019 .ft B
1020 .nf
1021 example% cvs commit -r3.0
1022 .fi
1023 .ft P
1024 .in -1i
1025 .SP
1026 .B cvs
1027 will only allow you to commit to a revision that is on the main trunk (a
1028 revision with a single dot).
1029 However, you can also commit to a branch revision (one that has an even
1030 number of dots) with the
1031 .B \-r
1032 option.
1033 To create a branch revision, one typically use the
1034 .B \-b
1035 option of the
1036 .BR rtag " or " tag
1037 commands.
1038 Then, either
1039 .BR checkout " or " update
1040 can be used to base your sources on the newly created branch.
1041 From that point on, all
1042 .B commit
1043 changes made within these working sources will be automatically added
1044 to a branch revision, thereby not perturbing main-line development in any
1045 way.
1046 For example, if you had to create a patch to the 1.2 version of the
1047 product, even though the 2.0 version is already under development, you
1048 might do:
1049 .SP
1050 .in +1i
1051 .ft B
1052 .nf
1053 example% cvs rtag -b -rFCS1_2 FCS1_2_Patch product_module
1054 example% cvs checkout -rFCS1_2_Patch product_module
1055 example% cd product_module
1056 [[ hack away ]]
1057 example% cvs commit
1058 .fi
1059 .ft P
1060 .in -1i
1061 .SP
1062 Say you have been working on some extremely experimental software, based on
1063 whatever revision you happened to checkout last week.
1064 If others in your group would like to work on this software with you, but
1065 without disturbing main-line development, you could commit your change to a
1066 new branch.
1067 Others can then checkout your experimental stuff and utilize the full
1068 benefit of
1069 .B cvs
1070 conflict resolution.
1071 The scenario might look like:
1072 .SP
1073 .in +1i
1074 .ft B
1075 .nf
1076 example% cvs tag -b EXPR1
1077 example% cvs update -rEXPR1
1078 [[ hack away ]]
1079 example% cvs commit
1080 .fi
1081 .ft P
1082 .in -1i
1083 .SP
1084 Others would simply do
1085 .` "cvs checkout -rEXPR1 whatever_module"
1086 to work with you on the experimental change.
1087 .TP
1088 \fBdiff\fP [\fB\-kl\fP] [\fIformat_options\fP] [[\fB\-r\fP \fIrev1\fP | \fB\-D\fP \fIdate1\fP | \fB\-j\fP \fIrev1:date1\fP] [\fB\-r\fP \fIrev2\fP | \fB\-D\fP \fIdate2\fP | \fB\-j\fP \fIrev2:date2\fP]] [\fIfiles.\|.\|.\fP]
1089 .I Requires:
1090 working directory, repository.
1091 .br
1092 .I Changes:
1093 nothing.
1094 .br
1095 You can compare your working files with revisions in the source
1096 repository, with the
1097 .` "cvs diff"
1098 command.  If you don't specify a particular revision, your files
1099 are compared with the revisions they were based on.  You can also use
1100 the standard
1101 .B cvs
1102 command option
1103 .B \-r
1104 to specify a particular revision to compare your files with.  Finally,
1105 if you use
1106 .B \-r
1107 twice, you can see differences between two revisions in the
1108 repository.
1109 You can also specify
1110 .B \-D
1111 options to diff against a revision (on the head branch) in the past, and
1112 you can also specify
1113 .B \-j
1114 options to diff against a revision relative to a branch tag in the past.
1115 The
1116 .B \-r
1117 and
1118 .B \-D
1119 and
1120 .B \-j
1121 options can be mixed together with at most two options ever specified.
1122 .SP
1123 See
1124 .` "cvs --help diff"
1125 for a list of supported
1126 .IR format_options .
1127 .SP
1128 If you don't specify any files,
1129 .B diff
1130 will display differences for all those files in the current directory
1131 (and its subdirectories, unless you use the standard option
1132 .BR \-l )
1133 that
1134 differ from the corresponding revision in the source repository
1135 (i.e. files that
1136 .I you
1137 have changed), or that differ from the revision specified.
1138 .TP
1139 \fBexport\fP [\-\fBf\|lNnQq\fP] \fB\-r\fP \fIrev\fP\||\|\fB\-D\fP \fIdate\fP [\fB\-d\fP \fIdir\fP] [\fB\-k\fP \fIkflag\fP] \fImodule\fP.\|.\|.
1140 .I Requires:
1141 repository.
1142 .br
1143 .I Changes:
1144 current directory.
1145 .br
1146 This command is a variant of
1147 .` "cvs checkout";
1148 use it when you want a copy of the source for \fImodule\fP
1149 without the \fBcvs\fP administrative directories.  For example, you
1150 might use
1151 .` "cvs export"
1152 to prepare source for shipment
1153 off-site.  This command \fIrequires\fP that you specify a date or tag
1154 (with \fB\-D\fP or \fB\-r\fP), so that you can count on reproducing
1155 the source you ship to others.
1156 .SP
1157 The only non-standard options are
1158 .` "\-d \fIdir\fP"
1159 (write the
1160 source into directory \fIdir\fP) and
1161 .` "\-N"
1162 (don't shorten
1163 module paths).
1164 These have the same meanings as the same options in
1165 .` "cvs checkout".
1166 .SP
1167 The
1168 .B \-kv
1169 option is useful when
1170 .B export
1171 is used.
1172 This causes any
1173 keywords to be expanded such that an
1174 .B import
1175 done at some other site will not lose the keyword revision information.
1176 Other \fIkflag\fPs may be used with
1177 .` "cvs export"
1178 and are described in
1179 .BR co ( 1 ).
1180 .TP
1181 \fBhistory\fP [\fB\-\fP\fIreport\fP] [\fB\-\fP\fIflags\fP] [\fB\-\fP\fIoptions args\fP] [\fIfiles\fP.\|.\|.]
1182 .I Requires:
1183 the file
1184 .` "$CVSROOT/CVSROOT/history"
1185 .br
1186 .I Changes:
1187 nothing.
1188 .br
1189 \fBcvs\fP keeps a history file that tracks each use of the
1190 \fBcheckout\fP, \fBcommit\fP, \fBrtag\fP, \fBupdate\fP, and \fBrelease\fP
1191 commands.  You can use
1192 .` "cvs history"
1193 to display this
1194 information in various formats.
1195 .SP
1196 .I Warning:
1197 .` "cvs history"
1198 uses
1199 .` "\-f",
1200 .` "\-l",
1201 .` "\-n",
1202 and
1203 .` "\-p"
1204 in ways that conflict with the
1205 descriptions in
1206 .SM
1207 COMMON COMMAND OPTIONS\c
1208 \&.
1209 .SP
1210 Several options (shown above as \fB\-\fP\fIreport\fP) control what
1211 kind of report is generated:
1212 .TP 1i
1213 .B \ \ \ \ \ \ \-c
1214 Report on each time \fBcommit\fP was used (i.e., each time the
1215 repository was modified).
1216 .TP 1i
1217 \fB\ \ \ \ \ \ \-m\fP \fImodule\fP
1218 Report on a particular \fImodule\fP.  (You can meaningfully use
1219 \fB\-m\fP more than once on the command line.)
1220 .TP 1i
1221 .B \ \ \ \ \ \ \-o
1222 Report on checked-out modules.
1223 .TP 1i
1224 .B \ \ \ \ \ \ \-T
1225 Report on all tags.
1226 .TP 1i
1227 \fB\ \ \ \ \ \ \-x\fP \fItype\fP
1228 Extract a particular set of record types \fIX\fP from the \fBcvs\fP
1229 history.  The types are indicated by single letters, which you may
1230 specify in combination.
1231 Certain commands have a single record type: \fBcheckout\fP (type `O'),
1232 \fBrelease\fP (type `F'), and \fBrtag\fP (type `T').  One of four
1233 record types may result from an \fBupdate\fP: `W', when the working copy
1234 of a file is deleted during update (because it was gone from the
1235 repository); `U', when a working file was copied from the
1236 repository; `G', when a merge was necessary and it succeeded; and 'C',
1237 when a merge was necessary but collisions were detected (requiring
1238 manual merging).  Finally, one of three record types results from
1239 \fBcommit\fP: `M', when a file was modified; `A', when a file is first
1240 added; and `R', when a file is removed.
1241 .TP 1i
1242 .B \ \ \ \ \ \ \-e
1243 Everything (all record types); equivalent to specifying
1244 .` "\-xMACFROGWUT".
1245 .TP 1i
1246 \fB\ \ \ \ \ \ \-z\fP \fIzone\fP
1247 Use time zone
1248 .I zone
1249 when outputting history records.
1250 The zone name
1251 .B LT
1252 stands for local time;
1253 numeric offsets stand for hours and minutes ahead of UTC.
1254 For example,
1255 .B +0530
1256 stands for 5 hours and 30 minutes ahead of (i.e. east of) UTC.
1257 .PP
1258 .RS .5i
1259 The options shown as \fB\-\fP\fIflags\fP constrain the report without
1260 requiring option arguments:
1261 .RE
1262 .TP 1i
1263 .B \ \ \ \ \ \ \-a
1264 Show data for all users (the default is to show data only for the user
1265 executing
1266 .` "cvs history").
1267 .TP 1i
1268 .B \ \ \ \ \ \ \-l
1269 Show last modification only.
1270 .TP 1i
1271 .B \ \ \ \ \ \ \-w
1272 Show only the records for modifications done from the same working
1273 directory where
1274 .` "cvs history"
1275 is executing.
1276 .PP
1277 .RS .5i
1278 The options shown as \fB\-\fP\fIoptions args\fP constrain the report
1279 based on an argument:
1280 .RE
1281 .TP 1i
1282 \fB\ \ \ \ \ \ \-b\fP \fIstr\fP
1283 Show data back to a record containing the string \fIstr\fP in either
1284 the module name, the file name, or the repository path.
1285 .TP 1i
1286 \fB\ \ \ \ \ \ \-D\fP \fIdate\fP
1287 Show data since \fIdate\fP.
1288 .TP 1i
1289 \fB\ \ \ \ \ \ \-p\fP \fIrepository\fP
1290 Show data for a particular source repository (you can specify several
1291 \fB\-p\fP options on the same command line).
1292 .TP 1i
1293 \fB\ \ \ \ \ \ \-r\fP \fIrev\fP
1294 Show records referring to revisions since the revision or tag
1295 named \fIrev\fP appears in individual RCS files.
1296 Each
1297 .SM RCS
1298 file is searched for the revision or tag.
1299 .TP 1i
1300 \fB\ \ \ \ \ \ \-t\fP \fItag\fP
1301 Show records since tag \fItag\fP was last added to the history file.
1302 This differs from the \fB-r\fP flag above in that it reads
1303 only the history file, not the
1304 .SM RCS
1305 files, and is much faster.
1306 .TP 1i
1307 \fB\ \ \ \ \ \ \-u\fP \fIname\fP
1308 Show records for user \fIname\fP.
1309 .PP
1310 .TP
1311 \fBimport\fP [\fB\-\fP\fIoptions\fP] \fIrepository vendortag releasetag\fP.\|.\|.
1312 .I Requires:
1313 Repository, source distribution directory.
1314 .br
1315 .I Changes:
1316 repository.
1317 .br
1318 Use
1319 .` "cvs import"
1320 to incorporate an entire source
1321 distribution from an outside source (e.g., a source vendor) into your
1322 source repository directory.  You can use this command both for
1323 initial creation of a repository, and for wholesale updates to the
1324 module form the outside source.
1325 .SP
1326 The \fIrepository\fP argument gives a directory name (or a path to a
1327 directory) under the CVS root directory for repositories; if the
1328 directory did not exist, \fBimport\fP creates it.
1329 .SP
1330 When you use \fBimport\fP for updates to source that has been modified in your
1331 source repository (since a prior \fBimport\fP), it
1332 will notify you of any files that conflict in the two branches of
1333 development; use
1334 .` "cvs checkout -j"
1335 to reconcile the differences, as \fBimport\fP instructs you to do.
1336 .SP
1337 By default, certain file names are ignored during
1338 .` "cvs import":
1339 names associated with
1340 .SM CVS
1341 administration, or with other common source control systems; common
1342 names for patch files, object files, archive files, and editor backup
1343 files; and other names that are usually artifacts of assorted utilities.
1344 For an up to date list of ignored file names, see the Cederqvist manual (as
1345 described in the SEE ALSO section of this manpage).
1346 .SP
1347 The outside source is saved in a first-level
1348 branch, by default
1349 .` "1.1.1".
1350 Updates are leaves of this
1351 branch; for example, files from the first imported collection of
1352 source will be revision
1353 .` "1.1.1.1",
1354 then files from the first
1355 imported update will be revision
1356 .` "1.1.1.2",
1357 and so on.
1358 .SP
1359 At least three arguments are required.  \fIrepository\fP is needed to
1360 identify the collection of source.  \fIvendortag\fP is a tag for the
1361 entire branch (e.g., for
1362 .` "1.1.1").
1363 You must also specify at
1364 least one \fIreleasetag\fR to uniquely identify the files at
1365 the leaves created each time you execute
1366 .` "cvs import".
1367 The
1368 \fIreleasetag\fR should be new, not previously existing in the
1369 repository file, and uniquely identify the imported release.
1370 .SP
1371 One of the standard
1372 .B cvs
1373 command options is available: \fB\-m\fP
1374 \fImessage\fP.  If you do not specify a logging message with
1375 \fB\-m\fP, your editor is invoked (as with \fBcommit\fP) to allow you
1376 to enter one.
1377 .SP
1378 There are three additional special options.
1379 .SP
1380 Use
1381 .` "\-d"
1382 to specify that each file's time of last modification should be used
1383 for the checkin date and time.
1384 .SP
1385 Use
1386 .` "\-b \fIbranch\fP"
1387 to specify a first-level branch other
1388 than
1389 .` "1.1.1".
1390 .SP
1391 Use
1392 .` "\-I \fIname\fP"
1393 to specify file names that should be
1394 ignored during \fBimport\fP.  You can use this option repeatedly.
1395 To avoid ignoring any files at all (even those ignored by default),
1396 specify
1397 .` "\-I !".
1398 .TP
1399 \fBlog\fP [\fB\-l\fP] \fIrlog-options [files\fP\|.\|.\|.]
1400 .I Requires:
1401 repository, working directory.
1402 .br
1403 .I Changes:
1404 nothing.
1405 .br
1406 .I Synonym:
1407 .B rlog
1408 .br
1409 Display log information for \fIfiles\fP.
1410 Among the more useful options are \fB\-h\fP
1411 to display only the header (including tag definitions, but omitting
1412 most of the full log); \fB\-r\fP to select logs on particular
1413 revisions or ranges of revisions; and \fB\-d\fP to select particular
1414 dates or date ranges.  See
1415 .BR rlog ( 1 )
1416 for full explanations.
1417 This command is recursive by default, unless the
1418 .B \-l
1419 option is specified.
1420 .TP
1421 \fBrdiff\fP [\fB\-\fP\fIflags\fP] [\fB\-V\fP \fIvn\fP] [\fB\-r\fP \fIt\fP|\fB\-D\fP \fId\fP [\fB\-r\fP \fIt2\fP|\fB\-D\fP \fId2\fP]] \fImodules\|.\|.\|.\fP
1422 .I Requires:
1423 repository.
1424 .br
1425 .I Changes:
1426 nothing.
1427 .br
1428 .I Synonym:
1429 .B patch
1430 .br
1431 Builds a Larry Wall format
1432 .BR patch ( 1 )
1433 file between two releases, that can be fed directly into the
1434 .B patch
1435 program to bring an old release up-to-date with the new release.
1436 (This is one of the few \fBcvs\fP commands that operates directly from
1437 the repository, and doesn't require a prior
1438 .BR checkout .)
1439 The diff output is sent to the standard output device.
1440 You can specify (using the standard \fB\-r\fP and \fB\-D\fP options)
1441 any combination of one or two revisions or dates.
1442 If only one revision or date is specified, the
1443 patch file reflects differences between that revision or date and the
1444 current ``head'' revisions in the
1445 .SM RCS
1446 file.
1447 .SP
1448 Note that if the software release affected
1449 is contained in more than one directory, then it may be necessary to
1450 specify the
1451 .B \-p
1452 option to the
1453 .B patch
1454 command when patching the old sources, so that
1455 .B patch
1456 is able to find the files that are located in other directories.
1457 .SP
1458 The standard option \fIflags\fP \fB\-f\fP, and \fB\-l\fP
1459 are available with this command.  There are also several
1460 special option flags:
1461 .SP
1462 If you use the
1463 .B \-s
1464 option, no patch output is produced.
1465 Instead, a summary of the changed or added files between the two
1466 releases is sent to the standard output device.
1467 This is useful for finding out, for example, which files have changed
1468 between two dates or revisions.
1469 .SP
1470 If you use the
1471 .B \-t
1472 option, a diff of the top two revisions is sent to the standard output device.
1473 This is most useful for seeing what the last change to a file was.
1474 .SP
1475 If you use the
1476 .B \-u
1477 option, the patch output uses the newer ``unidiff'' format for context
1478 diffs.
1479 .SP
1480 You can use
1481 .B \-c
1482 to explicitly specify the
1483 .` "diff \-c"
1484 form of context diffs
1485 (which is the default), if you like.
1486 .TP
1487 \fBrelease\fP [\fB\-dQq\fP] \fImodules\fP\|.\|.\|.
1488 .I Requires:
1489 Working directory.
1490 .br
1491 .I Changes:
1492 Working directory, history log.
1493 .br
1494 This command is meant to safely cancel the effect of
1495 .` "cvs checkout".
1496 Since
1497 .B cvs
1498 doesn't lock files, it isn't strictly necessary to use this command.
1499 You can always simply delete your working directory, if you
1500 like; but you risk losing changes you may have forgotten, and you
1501 leave no trace in the
1502 .B cvs
1503 history file that you've abandoned your checkout.
1504 .SP
1505 Use
1506 .` "cvs release"
1507 to avoid these problems.  This command
1508 checks that no un-committed changes are present; that you are
1509 executing it from immediately above, or inside, a \fBcvs\fP working
1510 directory; and that the repository recorded for your files is the same
1511 as the repository defined in the module database.
1512 .SP
1513 If all these conditions are true,
1514 .` "cvs release"
1515 leaves a
1516 record of its execution (attesting to your intentionally abandoning
1517 your checkout) in the
1518 .B cvs
1519 history log.
1520 .SP
1521 You can use the \fB\-d\fP flag to request that your working copies of
1522 the source files be deleted if the \fBrelease\fP succeeds.
1523 .TP
1524 \fBremove\fP [\fB\-lR\fP] [\fIfiles\|.\|.\|.\fP]
1525 .I Requires:
1526 Working directory.
1527 .br
1528 .I Changes:
1529 Working directory.
1530 .br
1531 .I Synonyms:
1532 .BR rm ", " delete
1533 .br
1534 Use this command to declare that you wish to remove \fIfiles\fP from
1535 the source repository.  Like most
1536 .B cvs
1537 commands,
1538 .` "cvs remove"
1539 works on files in your working
1540 directory, not directly on the repository.  As a safeguard, it also
1541 requires that you first erase the specified files from your working
1542 directory.
1543 .SP
1544 The files are not actually removed until you apply your changes to the
1545 repository with
1546 .BR commit ;
1547 at that point, the corresponding
1548 .SM RCS
1549 files in the source repository are
1550 .I moved
1551 into the
1552 .` "Attic"
1553 directory (also within the source repository).
1554 .SP
1555 This command is recursive by default, scheduling all physically removed
1556 files that it finds for removal by the next
1557 .BR commit .
1558 Use the
1559 .B \-l
1560 option to avoid this recursion, or just specify that actual files that you
1561 wish remove to consider.
1562 .TP
1563 \fBrtag\fP [\fB\-f\|alnRQq\fP] [\fB\-b\fP] [\fB\-d\fP] [\fB\-r\fP \fItag\fP | \fB\-D\fP \fIdate\fP] \fIsymbolic_tag\fP \fImodules\|.\|.\|.\fP
1564 .I Requires:
1565 repository.
1566 .br
1567 .I Changes:
1568 repository.
1569 .br
1570 .I Synonym:
1571 .B rfreeze
1572 .br
1573 You can use this command to assign symbolic tags to particular,
1574 explicitly specified source versions in the repository.
1575 .` "cvs rtag"
1576 works directly on the repository contents (and requires no
1577 prior
1578 .BR checkout ).
1579 Use
1580 .` "cvs tag"
1581 instead, to base the selection of
1582 versions to tag on the contents of your working directory.
1583 .SP
1584 In general, tags (often the symbolic names of software distributions)
1585 should not be removed, but the
1586 .B \-d
1587 option is available as a means to remove completely obsolete symbolic names
1588 if necessary (as might be the case for an Alpha release, say).
1589 .SP
1590 .` "cvs rtag"
1591 will not move a tag that already exists.  With the \fB\-F\fP option,
1592 however,
1593 .` "cvs rtag"
1594 will re-locate any instance of \fIsymbolic_tag\fP that already exists
1595 on that file to the new repository versions.  Without the \fB\-F\fP
1596 option, attempting to use
1597 .` "cvs rtag"
1598 to apply a tag that already exists on that file will produce an error
1599 message.
1600 .SP
1601 The \fB-b\fP option makes the tag a ``branch'' tag, allowing
1602 concurrent, isolated development.
1603 This is most useful for creating a patch to a previously released software
1604 distribution.
1605 .SP
1606 You can use the standard \fB\-r\fP and \fB\-D\fP options to tag only those
1607 files that already contain a certain tag.  This method would be used
1608 to rename a tag: tag only the files identified by the old tag, then delete the
1609 old tag, leaving the new tag on exactly the same files as the old tag.
1610 .SP
1611 .B rtag
1612 executes recursively by default, tagging all subdirectories of
1613 \fImodules\fP you specify in the argument.  You can restrict its
1614 operation to top-level directories with the standard \fB\-l\fP option;
1615 or you can explicitly request recursion with \fB\-R\fP.
1616 .SP
1617 The modules database can specify a program to execute whenever a tag
1618 is specified; a typical use is to send electronic mail to a group of
1619 interested parties.  If you want to bypass that program, use the
1620 standard \fB\-n\fP option.
1621 .SP
1622 Use the
1623 .B \-a
1624 option to have
1625 .B rtag
1626 look in the
1627 .` "Attic"
1628 for removed files that contain the specified tag.
1629 The tag is removed from these files, which makes it convenient to re-use a
1630 symbolic tag as development continues (and files get removed from the
1631 up-coming distribution).
1632 .TP
1633 \fBstatus\fP [\fB\-lRqQ\fP] [\fB\-v\fP] [\fIfiles\fP\|.\|.\|.]
1634 .I Requires:
1635 working directory, repository.
1636 .br
1637 .I Changes:
1638 nothing.
1639 .br
1640 Display a brief report on the current status of \fIfiles\fP with
1641 respect to the source repository, including any ``sticky'' tags,
1642 dates, or \fB\-k\fP options.  (``Sticky'' options will restrict how
1643 .` "cvs update"
1644 operates until you reset them; see the
1645 description of
1646 .` "cvs update \-A\|.\|.\|.".)
1647 .SP
1648 You can also use this command to anticipate the potential impact of a
1649 .` "cvs update"
1650 on your working source directory.  If you do
1651 not specify any \fIfiles\fP explicitly, reports are shown for all
1652 files that \fBcvs\fP has placed in your working directory.  You can
1653 limit the scope of this search to the current directory itself (not
1654 its subdirectories) with the standard \fB\-l\fP option flag; or you
1655 can explicitly request recursive status reports with the \fB\-R\fP
1656 option.
1657 .SP
1658 The
1659 .B \-v
1660 option causes the symbolic tags for the
1661 .SM RCS
1662 file to be displayed as well.
1663 .TP
1664 \fBtag\fP [\fB\-lQqR\fP] [\fB\-F\fP] [\fB\-b\fP] [\fB\-d\fP] [\fB\-r\fP \fItag\fP | \fB\-D\fP \fIdate\fP] [\fB\-f\fP] \fIsymbolic_tag\fP [\fIfiles\fP\|.\|.\|.\|]
1665 .I Requires:
1666 working directory, repository.
1667 .br
1668 .I Changes:
1669 repository.
1670 .br
1671 .I Synonym:
1672 .B freeze
1673 .br
1674 Use this command to assign symbolic tags to the nearest repository
1675 versions to your working sources.  The tags are applied immediately to
1676 the repository, as with \fBrtag\fP.
1677 .SP
1678 One potentially surprising aspect of the fact that \fBcvs tag\fP
1679 operates on the repository is that you are tagging the checked-in
1680 revisions, which may differ from locally modified files in your working
1681 directory.  If you want to avoid doing this by mistake, specify the
1682 \fB-c\fP option to \fBcvs tag\fP.  If there are any locally modified files, CVS
1683 will abort with an error before it tags any files.
1684 .SP
1685 One use for tags is to record a ``snapshot'' of the current sources
1686 when the software freeze date of a project arrives.  As bugs are fixed
1687 after the freeze date, only those changed sources that are to be part
1688 of the release need be re-tagged.
1689 .SP
1690 The symbolic tags are meant to permanently record which revisions of which
1691 files were used in creating a software distribution.
1692 The
1693 .BR checkout ,
1694 .B export
1695 and
1696 .B update
1697 commands allow you to extract an exact copy of a tagged release at any time in
1698 the future, regardless of whether files have been changed, added, or removed
1699 since the release was tagged.
1700 .SP
1701 You can use the standard \fB\-r\fP and \fB\-D\fP options to tag only those
1702 files that already contain a certain tag.  This method would be used
1703 to rename a tag: tag only the files identified by the old tag, then delete the
1704 old tag, leaving the new tag on exactly the same files as the old tag.
1705 .SP
1706 Specifying the \fB\-f\fP flag in addition to the \fB\-r\fP or \fB\-D\fP
1707 flags will tag those files named on the command line even if they do not
1708 contain the old tag or did not exist on the specified date.
1709 .SP
1710 By default (without a \fB\-r\fP or \fB\-D\fP flag)
1711 the versions to be tagged are supplied
1712 implicitly by the \fBcvs\fP records of your working files' history
1713 rather than applied explicitly.
1714 .SP
1715 If you use
1716 .` "cvs tag \-d \fIsymbolic_tag\fP\|.\|.\|.",
1717 the
1718 symbolic tag you specify is
1719 .I deleted
1720 instead of being added.  \fIWarning\fP: Be very certain of your ground
1721 before you delete a tag; doing this effectively discards some
1722 historical information, which may later turn out to have been valuable.
1723 .SP
1724 .` "cvs tag"
1725 will not move a tag that already exists.  With the \fB\-F\fP option,
1726 however,
1727 .` "cvs tag"
1728 will re-locate any instance of \fIsymbolic_tag\fP that already exists
1729 on that file to the new repository versions.  Without the \fB\-F\fP
1730 option, attempting to use
1731 .` "cvs tag"
1732 to apply a tag that already exists on that file will produce an error
1733 message.
1734 .SP
1735 The \fB-b\fP option makes the tag a ``branch'' tag, allowing
1736 concurrent, isolated development.
1737 This is most useful for creating a patch to a previously released software
1738 distribution.
1739 .SP
1740 Normally,
1741 .B tag
1742 executes recursively through subdirectories; you can prevent this by
1743 using the standard \fB\-l\fP option, or specify the recursion
1744 explicitly by using \fB\-R\fP.
1745 .TP
1746 \fBupdate\fP [\fB\-ACdf\|lPpQqR\fP] [\fB\-d\fP] [\fB\-r\fP \fItag\fP|\fB\-D\fP \fIdate\fP] \fIfiles\|.\|.\|.\fP
1747 .I Requires:
1748 repository, working directory.
1749 .br
1750 .I Changes:
1751 working directory.
1752 .br
1753 After you've run
1754 .B checkout
1755 to create your private copy of source from the common repository,
1756 other developers will continue changing the central source.  From time
1757 to time, when it is convenient in your development process, you can
1758 use the
1759 .B update
1760 command
1761 from within your working directory to reconcile your work with any
1762 revisions applied to  the source repository since your last
1763 .B checkout
1764 or
1765 .BR update .
1766 .SP
1767 .B update
1768 keeps you informed of its progress by printing a line for each file,
1769 prefaced with one of the characters
1770 .` "U P A R M C ?"
1771 to indicate the status of the file:
1772 .TP 1i
1773 \fBU\fP \fIfile\fP
1774 The file was brought \fIup to date\fP with respect to the repository.
1775 This is done for any file that exists in the repository but not in your
1776 working directory, and for files that you haven't changed but are not the most
1777 recent versions available in the repository.
1778 .TP 1i
1779 \fBP\fP \fIfile\fP
1780 Like \fBU\fP, but the CVS server sends a patch instead of an entire file.
1781 This accomplishes the same thing as \fBU\fP using less bandwidth.
1782 .TP 1i
1783 \fBA\fP \fIfile\fP
1784 The file has been \fIadded\fP to your private copy of the sources, and
1785 will be added to the
1786 source repository when you run
1787 .` "cvs commit"
1788 on the file.
1789 This is a reminder to you that the file needs to be committed.
1790 .TP 1i
1791 \fBR\fP \fIfile\fP
1792 The file has been \fIremoved\fP from your private copy of the sources, and
1793 will be removed from the
1794 source repository when you run
1795 .` "cvs commit"
1796 on the file.
1797 This is a reminder to you that the file needs to be committed.
1798 .TP 1i
1799 \fBM\fP \fIfile\fP
1800 The file is \fImodified\fP in your working directory.
1801 .` "M"
1802 can indicate one of two states for a file you're working on: either
1803 there were no modifications to the same file in the repository, so
1804 that your file remains as you last saw it; or there were modifications
1805 in the repository as well as in your copy, but they were
1806 \fImerged\fP successfully, without conflict, in your working
1807 directory.
1808 .TP 1i
1809 \fBC\fP \fIfile\fP
1810 A \fIconflict\fP was detected while trying to merge your changes to
1811 \fIfile\fP with changes from the source repository.  \fIfile\fP (the
1812 copy in your working directory) is now the result of merging
1813 the two versions; an unmodified copy of your file is also
1814 in your working directory, with the name `\fB.#\fP\fIfile\fP\fB.\fP\fIversion\fP',
1815 where
1816 .I version
1817 is the
1818 revision that your modified file started from.
1819 (Note that some systems automatically purge files that begin with
1820 \&
1821 .` ".#"
1822 if they have not been accessed for a few days.
1823 If you intend to keep a copy of your original file, it is a very good
1824 idea to rename it.)
1825 .TP 1i
1826 \fB?\fP \fIfile\fP
1827 \fIfile\fP is in your working directory, but does not correspond to
1828 anything in the source repository, and is not in the list of files
1829 for \fBcvs\fP to ignore (see the description of the \fB\-I\fP option).
1830 .PP
1831 .RS .5i
1832 .SP
1833 Use the
1834 .B \-A
1835 option to reset any sticky tags, dates, or
1836 .B \-k
1837 options.  (If you get a working copy of a file by using one of the
1838 \fB\-r\fP, \fB\-D\fP, or \fB\-k\fP options, \fBcvs\fP remembers the
1839 corresponding tag, date, or \fIkflag\fP and continues using it on
1840 future updates; use the \fB\-A\fP option to make \fBcvs\fP forget these
1841 specifications, and retrieve the ``head'' version of the file).
1842 .SP
1843 The \fB\-j\fP\fIbranch\fP option 
1844 merges the changes made between the
1845 resulting revision and the revision that it is based on (e.g., if
1846 the tag refers to a branch,
1847 .B cvs
1848 will merge all changes made in
1849 that branch into your working file).
1850 .SP
1851 With two \fB-j\fP options,
1852 .B cvs
1853 will merge in the changes between the two respective revisions.
1854 This can be used to ``remove'' a certain delta from your working file.
1855 E.g., If the file foo.c is based on
1856 revision 1.6 and I want to remove the changes made between 1.3 and
1857 1.5, I might do:
1858 .SP
1859 .in +1i
1860 .ft B
1861 .nf
1862 example% cvs update -j1.5 -j1.3 foo.c   # note the order...
1863 .fi
1864 .ft P
1865 .in -1i
1866 .SP
1867 In addition, each \fB-j\fP option can contain on optional date
1868 specification which, when used with branches, can limit the chosen
1869 revision to one within a specific date.
1870 An optional date is specified by adding a colon (:) to the tag.
1871 .SP
1872 .in +1i
1873 .ft B
1874 .nf
1875 -jSymbolic_Tag:Date_Specifier
1876 .fi
1877 .ft P
1878 .in -1i
1879 .SP
1880 Use the
1881 .B \-d
1882 option to create any directories that exist in the repository if they're
1883 missing from the working directory.  (Normally, update acts only on
1884 directories and files that were already enrolled in your
1885 working directory.)  This is useful for updating directories
1886 that were created in the repository since the initial
1887 \fBcheckout\fP; but it has an unfortunate side effect.  If you
1888 deliberately avoided certain directories in the repository when you
1889 created your working directory (either through use of a module name or by
1890 listing explicitly the files and directories you wanted on the
1891 command line), then updating with
1892 .B \-d
1893 will create those directories, which may not be what you want.
1894 .SP
1895 Use \fB\-I\fP \fIname\fP to ignore files whose names match \fIname\fP
1896 (in your working directory) during the update.  You can specify
1897 \fB\-I\fP more than once on the command line to specify several files
1898 to ignore.  By default,
1899 \fBupdate\fP ignores files whose names match certain patterns; for
1900 an up to date list of ignored file names, see the Cederqvist manual (as
1901 described in the SEE ALSO section of this manpage).
1902 .SP
1903 Use
1904 .` "\-I !"
1905 to avoid ignoring any files at all.
1906 .SP
1907 Use the
1908 .` "\-C"
1909 option to overwrite locally modified files with clean copies from
1910 the repository (the modified file is saved in
1911 `\fB.#\fP\fIfile\fP\fB.\fP\fIrevision\fP', however).
1912 .SP
1913 The standard \fBcvs\fP command options \fB\-f\fP, \fB\-k\fP,
1914 \fB\-l\fP, \fB\-P\fP, \fB\-p\fP, and \fB\-r\fP
1915 are also available with \fBupdate\fP.
1916 .RE
1917 .SH "FILES"
1918 For more detailed information on
1919 .B cvs
1920 supporting files, see
1921 .BR cvs ( 5 ).
1922 .LP
1923 .I
1924 Files in home directories:
1925 .TP
1926 \&.cvsrc
1927 The
1928 .B cvs
1929 initialization file.  Lines in this file can be used to specify default
1930 options for each
1931 .B cvs
1932 command.  For example the line
1933 .` "diff \-c"
1934 will ensure that
1935 .` "cvs diff"
1936 is always passed the
1937 .B \-c
1938 option in addition to any other options passed on the command line.
1939 .TP
1940 \&.cvswrappers
1941 Specifies wrappers to be used in addition to those specified in the
1942 CVSROOT/cvswrappers file in the repository.
1943 .LP
1944 .I
1945 Files in working directories:
1946 .TP
1947 CVS
1948 A directory of \fBcvs\fP administrative files.
1949 .I
1950 Do not delete.
1951 .TP
1952 CVS/Entries
1953 List and status of files in your working directory.
1954 .TP
1955 CVS/Entries.Backup
1956 A backup of
1957 .` "CVS/Entries".
1958 .TP
1959 CVS/Entries.Static
1960 Flag: do not add more entries on
1961 .` "cvs update".
1962 .TP
1963 CVS/Root
1964 Pathname to the repository (
1965 .SM CVSROOT
1966 ) location at the time of checkout.  This file is used instead
1967 of the
1968 .SM CVSROOT
1969 environment variable if the environment variable is not
1970 set.  A warning message will be issued when the contents of this
1971 file and the
1972 .SM CVSROOT
1973 environment variable differ.  The file may be over-ridden by the
1974 presence of the
1975 .SM CVS_IGNORE_REMOTE_ROOT
1976 environment variable.
1977 .TP
1978 CVS/Repository
1979 Pathname to the corresponding directory in the source repository.
1980 .TP
1981 CVS/Tag
1982 Contains the per-directory ``sticky'' tag or date information.
1983 This file is created/updated when you specify
1984 .B \-r
1985 or
1986 .B \-D
1987 to the
1988 .B checkout
1989 or
1990 .B update
1991 commands, and no files are specified.
1992 .TP
1993 CVS/Checkin.prog
1994 Name of program to run on
1995 .` "cvs commit".
1996 .TP
1997 CVS/Update.prog
1998 Name of program to run on
1999 .` "cvs update".
2000 .LP
2001 .I
2002 Files in source repositories:
2003 .TP
2004 $CVSROOT/CVSROOT
2005 Directory of global administrative files for repository.
2006 .TP
2007 CVSROOT/commitinfo,v
2008 Records programs for filtering
2009 .` "cvs commit"
2010 requests.
2011 .TP
2012 CVSROOT/cvswrappers,v
2013 Records
2014 .B cvs
2015 wrapper commands to be used when checking files into and out of the
2016 repository.  Wrappers allow the file or directory to be processed
2017 on the way in and out of CVS.  The intended uses are many, one
2018 possible use would be to reformat a C file before the file is checked
2019 in, so all of the code in the repository looks the same.
2020 .TP
2021 CVSROOT/editinfo,v
2022 Records programs for editing/validating
2023 .` "cvs commit"
2024 log entries.
2025 .TP
2026 CVSROOT/history
2027 Log file of \fBcvs\fP transactions.
2028 .TP
2029 CVSROOT/loginfo,v
2030 Records programs for piping
2031 .` "cvs commit"
2032 log entries.
2033 .TP
2034 CVSROOT/modules,v
2035 Definitions for modules in this repository.
2036 .TP
2037 CVSROOT/rcsinfo,v
2038 Records pathnames to templates used during a
2039 .` "cvs commit"
2040 operation.
2041 .TP
2042 CVSROOT/taginfo,v
2043 Records programs for validating/logging
2044 .` "cvs tag"
2045 and
2046 .` "cvs rtag"
2047 operations.
2048 .TP
2049 MODULE/Attic
2050 Directory for removed source files.
2051 .TP
2052 #cvs.lock
2053 A lock directory created by
2054 .B cvs
2055 when doing sensitive changes to the
2056 source repository.
2057 .TP
2058 #cvs.tfl.\fIpid\fP
2059 Temporary lock file for repository.
2060 .TP
2061 #cvs.rfl.\fIpid\fP
2062 A read lock.
2063 .TP
2064 #cvs.wfl.\fIpid\fP
2065 A write lock.
2066 .SH "ENVIRONMENT"
2067 .TP
2068 .SM CVSROOT
2069 Should contain the full pathname to the root of the
2070 .B cvs
2071 source repository (where the
2072 .SM RCS
2073 files are kept).  This information must be available to \fBcvs\fP for
2074 most commands to execute; if
2075 .SM CVSROOT
2076 is not set, or if you wish to override it for one invocation, you can
2077 supply it on the command line:
2078 .` "cvs \-d \fIcvsroot cvs_command\fP\|.\|.\|."
2079 You may not need to set
2080 .SM CVSROOT
2081 if your \fBcvs\fP binary has the right path compiled in.
2082 .TP
2083 .SM CVSREAD
2084 If this is set,
2085 .B checkout
2086 and
2087 .B update
2088 will try hard to make the files in your working directory read-only.
2089 When this is not set, the default behavior is to permit modification
2090 of your working files.
2091 .TP
2092 .SM CVSREADONLYFS
2093 If this is set, the
2094 .B \-R
2095 option is assumed, and
2096 .B cvs
2097 operates in read-only repository mode.
2098 .TP
2099 .SM RCSBIN
2100 Specifies the full pathname where to find
2101 .SM RCS
2102 programs, such as
2103 .BR co ( 1 )
2104 and
2105 .BR ci ( 1 )
2106 (CVS 1.9 and older).
2107 .TP
2108 .SM CVSEDITOR
2109 Specifies the program to use for recording log messages during
2110 .BR commit .
2111 If not set, the
2112 .SM VISUAL
2113 and
2114 .SM EDITOR
2115 environment variables are tried (in that order).
2116 If neither is set, a system-dependent default editor (e.g.,
2117 .BR vi )
2118 is used.
2119 .TP
2120 .SM CVS_CLIENT_PORT
2121 If this variable is set then
2122 .B cvs
2123 will use this port in
2124 \fIpserver mode\fP
2125 rather than the default port (cvspserver 2401).
2126 .TP
2127 .SM CVS_IGNORE_REMOTE_ROOT
2128 If this variable is set then
2129 .B cvs
2130 will ignore all references to remote repositories in the CVS/Root file.
2131 .TP
2132 .SM CVS_OPTIONS
2133 Specifies a set of default options for
2134 .B cvs.
2135 These options are interpreted before the startup file (\fI~/.cvsrc\fP) is read
2136 and can be overridden by explicit command line parameters.
2137 .TP
2138 .SM CVS_RSH
2139 .B cvs
2140 uses the contents of this variable to determine the name of the
2141 remote shell command to use when starting a
2142 .B cvs
2143 server.  If this variable is not set then
2144 .` "ssh"
2145 is used.
2146 .TP
2147 .SM CVS_SERVER
2148 .B cvs 
2149 uses the contents of this variable to determine the name of the
2150 .B cvs
2151 server command.  If this variable is not set then
2152 .` "cvs"
2153 is used.
2154 .TP
2155 .SM CVSWRAPPERS
2156 This variable is used by the
2157 .` "cvswrappers"
2158 script to determine the name of the wrapper file, in addition to the
2159 wrappers defaults contained in the repository
2160 .SM (CVSROOT/cvswrappers)
2161 and the user's home directory (~/.cvswrappers).
2162 .SH "AUTHORS"
2163 .TP
2164 Dick Grune
2165 Original author of the
2166 .B cvs
2167 shell script version posted to
2168 .B comp.sources.unix
2169 in the volume6 release of December, 1986.
2170 Credited with much of the
2171 .B cvs
2172 conflict resolution algorithms.
2173 .TP
2174 Brian Berliner
2175 Coder and designer of the
2176 .B cvs
2177 program itself in April, 1989, based on the original work done by Dick.
2178 .TP
2179 Jeff Polk
2180 Helped Brian with the design of the
2181 .B cvs
2182 module and vendor branch support and author of the
2183 .BR checkin ( 1 )
2184 shell script (the ancestor of
2185 .` "cvs import").
2186 .TP
2187 And many others too numerous to mention here.
2188 .SH "SEE ALSO"
2189 The most comprehensive manual for CVS is
2190 Version Management with CVS by Per Cederqvist et al.  Depending on
2191 your system, you may be able to get it with the
2192 .B info cvs
2193 command or it may be available as cvs.ps (postscript), cvs.texinfo
2194 (texinfo source), or cvs.html.
2195 .SP
2196 For CVS updates, more information on documentation, software related
2197 to CVS, development of CVS, and more, see:
2198 .in +1i
2199 .B http://cvs.nongnu.org
2200 .in -1i
2201 .SP
2202 .BR ci ( 1 ),
2203 .BR co ( 1 ),
2204 .BR cvs ( 5 ),
2205 .BR cvsbug ( 8 ),
2206 .BR diff ( 1 ),
2207 .BR grep ( 1 ),
2208 .BR patch ( 1 ),
2209 .BR rcs ( 1 ),
2210 .BR rcsdiff ( 1 ),
2211 .BR rcsmerge ( 1 ),
2212 .BR rlog ( 1 ).