home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Programming / rcs5ap1b.lzh / RCS.1LP < prev    next >
Encoding:
Text File  |  1991-01-30  |  8.6 KB  |  265 lines

  1.  
  2.  
  3.  
  4. RCS(1)                 Programmer's Manual                 RCS(1)
  5.  
  6.  
  7.  
  8. NAME
  9.      rcs - change RCS file attributes
  10.  
  11. SYNOPSIS
  12.      rcs [ _o_p_t_i_o_n_s ] _f_i_l_e ...
  13.  
  14. DESCRIPTION
  15.      rcs creates new RCS files or changes attributes of existing
  16.      ones.  An RCS file contains multiple revisions of text, an
  17.      access list, a change log, descriptive text, and some con-
  18.      trol attributes.  For rcs to work, the caller's login name
  19.      must be on the access list, except if the access list is
  20.      empty, the caller is the owner of the file or the superuser,
  21.      or the -i option is present.
  22.  
  23.      File names ending in ,v denote RCS files; all others denote
  24.      working files.  If a working file is given, rcs tries to
  25.      find the corresponding RCS file first in an RCS subdirectory
  26.      and then in the working file's directory, as explained in
  27.      co(1).
  28.  
  29. OPTIONS
  30.      -i   Create and initialize a new RCS file, but do not depo-
  31.           sit any revision.  If the RCS file has no path prefix,
  32.           try to place it first into the subdirectory ./RCS, and
  33.           then into the current directory.  If the RCS file
  34.           already exists, print an error message.
  35.  
  36.      -a_l_o_g_i_n_s
  37.           Append the login names appearing in the comma-separated
  38.           list _l_o_g_i_n_s to the access list of the RCS file.
  39.  
  40.      -A_o_l_d_f_i_l_e
  41.           Append the access list of _o_l_d_f_i_l_e to the access list of
  42.           the RCS file.
  43.  
  44.      -e[_l_o_g_i_n_s]
  45.           Erase the login names appearing in the comma-separated
  46.           list _l_o_g_i_n_s from the access list of the RCS file.  If
  47.           _l_o_g_i_n_s is omitted, erase the entire access list.
  48.  
  49.      -b[_r_e_v]
  50.           Set the default branch to _r_e_v.  If _r_e_v is omitted, the
  51.           default branch is reset to the (dynamically) highest
  52.           branch on the trunk.
  53.  
  54.      -c_s_t_r_i_n_g
  55.           sets the comment leader to _s_t_r_i_n_g.  The comment leader
  56.           is printed before every log message line generated by
  57.           the keyword $Log$ during checkout (see co(1)).  This is
  58.           useful for programming languages without multi-line
  59.           comments.  An initial ci , or an rcs -i without -c,
  60.  
  61.  
  62.  
  63. Printed 1/29/91            1990/12/04                           1
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. RCS(1)                 Programmer's Manual                 RCS(1)
  71.  
  72.  
  73.  
  74.           guesses the comment leader from the suffix of the work-
  75.           ing file.
  76.  
  77.      -k_s_u_b_s_t
  78.           Set the default keyword substitution to _s_u_b_s_t.  The
  79.           effect of keyword substitution is described in co(1).
  80.           Giving an explicit -k option to co, rcsdiff, and
  81.           rcsmerge overrides this default.  Beware rcs -kv,
  82.           because -kv is incompatible with co -l.  Use rcs -kkv
  83.           to restore the normal default keyword substitution.
  84.  
  85.      -l[_r_e_v]
  86.           Lock the revision with number _r_e_v.  If a branch is
  87.           given, lock the latest revision on that branch.  If _r_e_v
  88.           is omitted, lock the latest revision on the default
  89.           branch.  Locking prevents overlapping changes.  A lock
  90.           is removed with ci or rcs -u (see below).
  91.  
  92.      -u[_r_e_v]
  93.           Unlock the revision with number _r_e_v.  If a branch is
  94.           given, unlock the latest revision on that branch.  If
  95.           _r_e_v is omitted, remove the latest lock held by the
  96.           caller.  Normally, only the locker of a revision may
  97.           unlock it.  Somebody else unlocking a revision breaks
  98.           the lock.  This causes a mail message to be sent to the
  99.           original locker.  The message contains a commentary
  100.           solicited from the breaker.  The commentary is ter-
  101.           minated by end-of-file or by a line containing . by
  102.           itself.
  103.  
  104.      -L   Set locking to _s_t_r_i_c_t.  Strict locking means that the
  105.           owner of an RCS file is not exempt from locking for
  106.           checkin.  This option should be used for files that are
  107.           shared.
  108.  
  109.      -U   Set locking to non-strict.  Non-strict locking means
  110.           that the owner of a file need not lock a revision for
  111.           checkin.  This option should _n_o_t be used for files that
  112.           are shared.  Whether default locking is strict is
  113.           determined by your system administrator, but it is nor-
  114.           mally strict.
  115.  
  116.      -n_n_a_m_e[:_r_e_v]
  117.           Associate the symbolic name _n_a_m_e with the branch or
  118.           revision _r_e_v.  Print an error message if _n_a_m_e is
  119.           already associated with another number.  If _r_e_v is
  120.           omitted, the symbolic name is deleted.
  121.  
  122.      -N_n_a_m_e[:_r_e_v]
  123.           Act like -n, except override any previous assignment of
  124.           _n_a_m_e.
  125.  
  126.  
  127.  
  128.  
  129. Printed 1/29/91            1990/12/04                           2
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136. RCS(1)                 Programmer's Manual                 RCS(1)
  137.  
  138.  
  139.  
  140.      -o_r_a_n_g_e
  141.           deletes ("outdates") the revisions given by _r_a_n_g_e.  A
  142.           range consisting of a single revision number means that
  143.           revision.  A range consisting of a branch number means
  144.           the latest revision on that branch.  A range of the
  145.           form _r_e_v_1-_r_e_v_2 means revisions _r_e_v_1 to _r_e_v_2 on the same
  146.           branch, -_r_e_v means from the beginning of the branch
  147.           containing _r_e_v up to and including _r_e_v, and _r_e_v- means
  148.           from revision _r_e_v to the end of the branch containing
  149.           _r_e_v.  None of the outdated revisions may have branches
  150.           or locks.
  151.  
  152.      -q   Run quietly; do not print diagnostics.
  153.  
  154.      -I   Run interactively, even if the standard input is not a
  155.           terminal.
  156.  
  157.      -s_s_t_a_t_e[:_r_e_v]
  158.           Set the state attribute of the revision _r_e_v to _s_t_a_t_e .
  159.           If _r_e_v is a branch number, assume the latest revision
  160.           on that branch.  If _r_e_v is omitted, assume the latest
  161.           revision on the default branch.  Any identifier is
  162.           acceptable for _s_t_a_t_e.  A useful set of states is Exp
  163.           (for experimental), Stab (for stable), and Rel (for
  164.           released).  By default, ci(1) sets the state of a revi-
  165.           sion to Exp.
  166.  
  167.      -t[_f_i_l_e]
  168.           Write descriptive text from the contents of the named
  169.           _f_i_l_e into the RCS file, deleting the existing text.
  170.           The _f_i_l_e name may not begin with -.  If _f_i_l_e is omit-
  171.           ted, obtain the text from standard input, terminated by
  172.           end-of-file or by a line containing . by itself.
  173.           Prompt for the text if interaction is possible; see -I.
  174.           With -i, descriptive text is obtained even if -t is not
  175.           given.
  176.  
  177.      -t-_s_t_r_i_n_g
  178.           Write descriptive text from the _s_t_r_i_n_g into the RCS
  179.           file, deleting the existing text.
  180.  
  181.      -V_n  Emulate RCS version _n.  See co(1) for details.
  182.  
  183. COMPATIBILITY
  184.      The -b_r_e_v option generates an RCS file that cannot be parsed
  185.      by RCS version 3 or earlier.
  186.  
  187.      The -k_s_u_b_s_t options (except -kkv) generate an RCS file that
  188.      cannot be parsed by RCS version 4 or earlier.
  189.  
  190.      Use rcs -V_n to make an RCS file acceptable to RCS version _n
  191.      by discarding information that would confuse version _n.
  192.  
  193.  
  194.  
  195. Printed 1/29/91            1990/12/04                           3
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202. RCS(1)                 Programmer's Manual                 RCS(1)
  203.  
  204.  
  205.  
  206. DIAGNOSTICS
  207.      The RCS file name and the revisions outdated are written to
  208.      the diagnostic output.  The exit status is zero if and only
  209.      if all operations were successful.
  210.  
  211. FILES
  212.      rcs accesses files much as ci(1) does, except that it does
  213.      not need to access the working file or its directory.
  214.  
  215. IDENTIFICATION
  216.      Author: Walter F. Tichy.
  217.      Revision Number: 5.3; Release Date: 1990/12/04.
  218.      Copyright c 1982, 1988, 1989 by Walter F. Tichy.
  219.      Copyright c 1990 by Paul Eggert.
  220.  
  221. SEE ALSO
  222.      co(1), ci(1), ident(1), rcsdiff(1), rcsintro(1),
  223.      rcsmerge(1), rlog(1), rcsfile(5)
  224.      Walter F. Tichy, RCS--A System for Version Control,
  225.      _S_o_f_t_w_a_r_e--_P_r_a_c_t_i_c_e & _E_x_p_e_r_i_e_n_c_e 15, 7 (July 1985), 637-654.
  226.  
  227.  
  228.  
  229.  
  230.  
  231.  
  232.  
  233.  
  234.  
  235.  
  236.  
  237.  
  238.  
  239.  
  240.  
  241.  
  242.  
  243.  
  244.  
  245.  
  246.  
  247.  
  248.  
  249.  
  250.  
  251.  
  252.  
  253.  
  254.  
  255.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261. Printed 1/29/91            1990/12/04                           4
  262.  
  263.  
  264.  
  265.