ci (1)
NAME
ci - check in RCS revisionsSYNOPSIS
ci [options] file ...DESCRIPTION
ci stores new revisions intoFor ci to work, the caller's login must be on the access list, except if the access list is empty or the caller is the superuser or the owner of the file. To append a new revision to an existing branch, the tip revision on that branch must be locked by the caller. Otherwise, only a new branch can be created. This restriction is not enforced for the owner of the file if non-strict locking is used (see rcs(1)). A lock held by someone else can be broken with the rcs command.
Unless the -f option is given, ci checks whether the revision to be deposited differs from the preceding one. If not, instead of creating a new revision ci reverts to the preceding one. To revert, ordinary ci removes the working file and any lock; ci -l keeps and ci -u removes any lock, and then they both generate a new working file much as if co -l or co -u had been applied to the preceding revision. When reverting, any -n and -s options apply to the preceding revision.
For each revision deposited, ci prompts for a log message. The log message should summarize the change and must be terminated by end-of-file or by a line containing . by itself. If several files are checked in ci asks whether to reuse the previous log message. If the standard input is not a terminal, ci suppresses the prompt and uses the same log message for all files. See also -m.
If the
The number rev of the deposited revision can be given by any of the options -f, -i, -I, -j, -k, -l, -M, -q, -r, or -u. rev can be symbolic, numeric, or mixed. Symbolic names in rev must already be defined; see the -n and -N options for assigning names during checkin. If rev is $, ci determines the revision number from keyword values in the working file.
If rev begins with a period, then the default branch (normally the trunk) is prepended to it. If rev is a branch number followed by a period, then the latest revision on that branch is used.
If rev is a revision number, it must be higher than the latest one on the branch to which rev belongs, or must start a new branch.
If
rev
is a branch rather than a revision number,
the new revision is appended to that branch. The level number is obtained
by incrementing the tip revision number of that branch.
If
rev
indicates a non-existing branch,
that branch is created with the initial revision numbered
rev.1.
If rev is omitted, ci tries to derive the new revision number from the caller's last lock. If the caller has locked the tip revision of a branch, the new revision is appended to that branch. The new revision number is obtained by incrementing the tip revision number. If the caller locked a non-tip revision, a new branch is started at that revision by incrementing the highest branch number at that revision. The default initial branch and level numbers are 1.
If rev is omitted and the caller has no lock, but owns the file and locking is not set to strict, then the revision is appended to the default branch (normally the trunk; see the -b option of rcs(1)).
Exception: On the trunk, revisions can be appended to the end, but not inserted.
OPTIONS
- -rrev
- Check in revision rev.
- -r
-
The bare
-r
option (without any revision) has an unusual meaning in
ci.
With other RCScommands, a bare -r option specifies the most recent revision on the default branch, but with ci, a bare -r option reestablishes the default behavior of releasing a lock and removing the working file, and is used to override any default -l or -u options established by shell aliases or scripts.
- -l[rev]
- works like -r, except it performs an additional co -l for the deposited revision. Thus, the deposited revision is immediately checked out again and locked. This is useful for saving a revision although one wants to continue editing it after the checkin.
- -u[rev]
-
works like
-l,
except that the deposited revision is not locked.
This lets one read the working file
immediately after checkin.
-
The -l, bare -r, and -u options are mutually exclusive and silently override each other. For example, ci -u -r is equivalent to ci -r because bare -r overrides -u.
-
- -f[rev]
- forces a deposit; the new revision is deposited even it is not different from the preceding one.
- -k[rev]
- searches the working file for keyword values to determine its revision number, creation date, state, and author (see co(1)), and assigns these values to the deposited revision, rather than computing them locally. It also generates a default login message noting the login of the caller and the actual checkin date. This option is useful for software distribution. A revision that is sent to several sites should be checked in with the -k option at these sites to preserve the original number, date, author, and state. The extracted keyword values and the default log message can be overridden with the options -d, -m, -s, -w, and any option that carries a revision number.
- -q[rev]
- quiet mode; diagnostic output is not printed. A revision that is not different from the preceding one is not deposited, unless -f is given.
- -i[rev]
-
initial checkin; report an error if the RCSfile already exists. This avoids race conditions in certain applications.
- -j[rev]
-
just checkin and do not initialize;
report an error if the RCSfile does not already exist.
- -I[rev]
- interactive mode; the user is prompted and questioned even if the standard input is not a terminal.
- -d[date]
- uses date for the checkin date and time. The date is specified in free format as explained in co(1). This is useful for lying about the checkin date, and for -k if no date is available. If date is empty, the working file's time of last modification is used.
- -M[rev]
- Set the modification time on any new working file to be the date of the retrieved revision. For example, ci -d -M -u f does not alter f's modification time, even if f's contents change due to keyword substitution. Use this option with care; it can confuse make(1).
- -m[msg]
- uses the string msg as the log message for all revisions checked in. If msg is omitted, it defaults to "*** empty log message ***". By convention, log messages that start with # are comments and are ignored by programs like GNU Emacs's vc package. Also, log messages that start with {clumpname} (followed by white space) are meant to be clumped together if possible, even if they are associated with different files; the {clumpname} label is used only for clumping, and is not considered to be part of the log message itself.
- -nname
- assigns the symbolic name name to the number of the checked-in revision. ci prints an error message if name is already assigned to another number.
- -Nname
- same as -n, except that it overrides a previous assignment of name.
- -sstate
- sets the state of the checked-in revision to the identifier state. The default state is Exp.
- -tfile
-
writes descriptive text from the contents of the named
file
into the RCSfile, deleting the existing text. The file cannot begin with -.
- -t-string
-
Write descriptive text from the
string
into the RCSfile, deleting the existing text.
-
The -t option, in both its forms, has effect only during an initial checkin; it is silently ignored otherwise.
During the initial checkin, if -t is not given, ci obtains the text from standard input, terminated by end-of-file or by a line containing . by itself. The user is prompted for the text if interaction is possible; see -I.
For backward compatibility with older versions of
RCS, a bare -t option is ignored.
-
- -T
-
Set the RCSfile's modification time to the new revision's time if the former precedes the latter and there is a new revision; preserve theRCSfile's modification time otherwise. If you have locked a revision, ci usually updates theRCSfile's modification time to the current time, because the lock is stored in theRCSfile and removing the lock requires changing theRCSfile. This can create anRCSfile newer than the working file in one of two ways: first, ci -M can create a working file with a date before the current time; second, when reverting to the previous revision theRCSfile can change while the working file remains unchanged. These two cases can cause excessive recompilation caused by a make(1) dependency of the working file on theRCSfile. The -T option inhibits this recompilation by lying about theRCSfile's date. Use this option with care; it can suppress recompilation even when a checkin of one working file should affect another working file associated with the sameRCSfile. For example, suppose theRCSfile's time is 01:00, the (changed) working file's time is 02:00, some other copy of the working file has a time of 03:00, and the current time is 04:00. Then ci -d -T sets theRCSfile's time to 02:00 instead of the usual 04:00; this causes make(1) to think (incorrectly) that the other copy is newer than theRCSfile.
- -wlogin
- uses login for the author field of the deposited revision. Useful for lying about the author, and for -k if no author is available.
- -V
-
Print RCS's version number.
- -Vn
-
Emulate RCSversion n. See co(1) for details.
- -xsuffixes
-
specifies the suffixes for RCSfiles. A nonempty suffix matches any file name ending in the suffix. An empty suffix matches any file name of the form RCS/frag or frag1/RCS/frag2. The -x option can specify a list of suffixes separated by /. For example, -x,v/ specifies two suffixes: ,v and the empty suffix. If two or more suffixes are specified, they are tried in order when looking for anRCSfile; the first one that works is used for that file. If noRCSfile is found but anRCSfile can be created, the suffixes are tried in order to determine the newRCSfile's name. The default for suffixes is installation-dependent; normally it is ,v/ for hosts like Unix that permit commas in file names, and is empty (i.e. just the empty suffix) for other hosts.
- -zzone
-
specifies the date output format in keyword substitution,
and specifies the default time zone for
date
in the
-ddate
option.
The
zone
should be empty, a numeric UTCoffset, or the special string LT for local time. The default is an empty zone, which uses the traditionalRCSformat ofUTCwithout any time zone indication and with slashes separating the parts of the date; otherwise, times are output inISO8601 format with time zone indication. For example, if local time is January 11, 1990, 8pm Pacific Standard Time, eight hours west ofUTC, then the time is output as follows:
-
-
option time output -z 1990/01/12 04:00:00 (default) -zLT 1990-01-11 20:00:00-08 -z+05:30 1990-01-12 09:30:00+05:30
The -z option does not affect dates stored in
RCSfiles, which are alwaysUTC. -
-
FILE NAMING
Pairs of1) Both the
2) Only the
3) Only the working file is given. Then ci considers each
If the
ci reports an error if an attempt to open an
EXAMPLES
Suppose ,v is an
-
ci io.c; ci RCS/io.c,v; ci io.c,v; ci io.c RCS/io.c,v; ci io.c io.c,v; ci RCS/io.c,v io.c; ci io.c,v io.c;
Suppose instead that the empty suffix is an
-
ci io.c; ci RCS/io.c; ci io.c RCS/io.c; ci RCS/io.c io.c;
FILE MODES
AnFILES
Temporary files are created in the directory containing the working file, and also in the temporary directory (seeci never changes an
The effective user must be able to search and write the directory containing the
Users can control access to
SETUID USE
To prevent anybody but their- *
-
Check that the host supports RCSsetuid use. Consult a trustworthy expert if there are any doubts. It is best if the seteuid system call works as described in Posix 1003.1a Draft 5, becauseRCScan switch back and forth easily between real and effective users, even if the real user is root. If not, the second best is if the setuid system call supports saved setuid (the {_POSIX_SAVED_IDS} behavior of Posix 1003.1-1990); this fails only if the real or effective user is root. IfRCSdetects any failure in setuid, it quits immediately.
- *
-
Choose a user
A
to serve as RCSadministrator for the set of users. Only A can invoke the rcs command on the users'RCSfiles. A should not be root or any other user with special powers. Mutually suspicious sets of users should use different administrators.
- *
- Choose a file name B to be a directory of files to be executed by the users.
- *
- Have A set up B to contain copies of ci and co that are setuid to A by copying the commands from their standard installation directory D as follows:
-
mkdir B cp D/c[io] B chmod go-w,u+s B/c[io]
- *
- Have each user prepend B to their command search path as follows:
-
PATH=B:$PATH; export PATH # ordinary shell set path=(B $path) # C shell
- *
-
Have
A
create each RCSdirectory R with write access only to A as follows:
-
mkdir R chmod go-w R
- *
-
If you want to let only certain users read the RCSfiles, put the users into a group G, and have A further protect theRCSdirectory as follows:
-
chgrp G R chmod g-w,o-rwx R
- *
-
Have
A
copy old RCSfiles (if any) into R, to ensure that A owns them.
- *
-
An RCSfile's access list limits who can check in and lock revisions. The default access list is empty, which grants checkin access to anyone who can read theRCSfile. If you want limit checkin access, have A invoke rcs -a on the file; see rcs(1). In particular, rcs -e -aA limits access to just A.
- *
-
Have
A
initialize any new RCSfiles with rcs -i before initial checkin, adding the -a option if you want to limit checkin access.
- *
- Give setuid privileges only to ci, co, and rcsclean; do not give them to rcs or to any other command.
- *
-
Do not use other setuid commands to invoke RCScommands; setuid is trickier than you think!
ENVIRONMENT
- RCSINIT
-
Options prepended to the argument list, separated by spaces.
A backslash escapes spaces within an option.
The
RCSINIToptions are prepended to the argument lists of mostRCScommands. UsefulRCSINIToptions include -q, -V, -x, and -z.
- RCS_MEM_LIMIT
-
Normally, for speed, commands either memory map or copy into memory
the RCSfile if its size is less than the memory-limit, currently defaulting to ``unlimited''. Otherwise (or if the initially-tried speedy ways fail), the commands fall back to using standard i/o routines. You can adjust the memory limit by settingRCS_MEM_LIMITto a numeric value lim (measured in kilobytes). An empty value is silently ignored. As a side effect, specifyingRCS_MEM_LIMITinhibits fall-back to slower routines.
- TMPDIR
-
Name of the temporary directory.
If not set, the environment variables
TMPandTEMPare inspected instead and the first value found is taken; if none of them are set, a host-dependent default is used, typically /tmp.
DIAGNOSTICS
For each revision, ci prints theIDENTIFICATION
Author: Walter F. Tichy.Manual Page Revision: 5.9.4; Release Date: 2015-06-21.
Copyright © 2010-2015 Thien-Thi Nguyen.
Copyright © 1990, 1991, 1992, 1993, 1994, 1995 Paul Eggert.
Copyright © 1982, 1988, 1989 Walter F. Tichy.
SEE ALSO
co(1), emacs(1), ident(1), make(1), rcs(1), rcsclean(1), rcsdiff(1), rcsmerge(1), rlog(1), setuid(2), rcsfile(5).
Walter F. Tichy,
The full documentation for
- info rcs
should give you access to the complete manual. Additionally, the
has news and links to the latest release, development site, etc.