For example, you can check out revision 1.4 as follows:
co -l -r1.4 ch01
When you check it in again, the new revision will be marked as 1.5.
But suppose the edited copy needs to be checked in as the next
release. You would type:
ci -r2 ch01
This creates revision 2.1. You can also create a branch from an
earlier revision. The following command creates revision 1.4.1.1:
ci -r1.4.1 ch01
Numbers are not the only way to specify revisions, though. You can
assign a text label as a revision name, using the -n option of ci or rcs.
You can also specify this name in any option that accepts a revision
number for an argument. For example, you could check in each of your
C programs, using the same label regardless of the current revision
number:
ci -u -nPrototype *.c
In addition, you can specify a $,
which means the revision number is extracted from the keywords of a
working file. For example:
rcsdiff -r$ ch01
compares ch01 to the revision that is checked
in. You can also combine names and symbols. The command:
rcs -nDraft:$ ch*
assigns a name to the revision numbers associated with several
chapter files.