home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / RCS43X.ZIP / RLOG.MAN < prev   
Text File  |  1990-11-19  |  5KB  |  121 lines

  1. NAME
  2.      rlog - print log messages and other information about RCS
  3.      files
  4.  
  5. SYNOPSIS
  6.      rlog [ options ] file ...
  7.  
  8. DESCRIPTION
  9.      Rlog prints information about RCS files.  Files ending in
  10.      `,v' are RCS files, all others are working files. If a work-
  11.      ing file is given, rlog tries to find the corresponding RCS
  12.      file first in directory ./RCS and then in the current direc-
  13.      tory, as explained in co(L).
  14.  
  15.      Rlog prints the following information for each RCS file: RCS
  16.      file name, working file name, head (i.e., the number of the
  17.      latest revision on the trunk), default branch, access list,
  18.      locks, symbolic names, suffix, total number of revisions,
  19.      number of revisions selected for printing, and descriptive
  20.      text. This is followed by entries for the selected revisions
  21.      in reverse chronological order for each branch. For each
  22.      revision, rlog prints revision number, author, date/time,
  23.      state, number of lines added/deleted (with respect to the
  24.      previous revision), locker of the revision (if any), and log
  25.      message.  Without options, rlog prints complete information.
  26.      The options below restrict this output.
  27.  
  28.      -L        ignores RCS files that have no locks set; con-
  29.                venient in combination with -R, -h, or -l.
  30.  
  31.      -R        only prints the name of the RCS file; convenient
  32.                for translating a working file name into an RCS
  33.                file name.
  34.  
  35.      -h        prints only RCS file name, working file name,
  36.                head, default branch, access list, locks, symbolic
  37.                names, and suffix.
  38.  
  39.      -t        prints the same as -h, plus the descriptive text.
  40.  
  41.      -b        prints information about the revisions on the
  42.                default branch (normally the highest branch on the
  43.                trunk).
  44.  
  45.      -ddates   prints information about revisions with a checkin
  46.                date/time in the ranges given by the semicolon-
  47.                separated list of dates.  A range of the form
  48.                d1<d2 or d2>d1 selects the revisions that were
  49.                deposited between d1 and d2, (inclusive).  A range
  50.                of the form <d or d> selects all revisions dated d
  51.                or earlier.  A range of the form d< or >d selects
  52.                all revisions dated d or later.  A range of the
  53.                form d selects the single, latest revision dated d
  54.                or earlier.  The date/time strings d, d1, and d2
  55.                are in the free format explained in co(L).  Quot-
  56.                ing is normally necessary, especially for < and >.
  57.                Note that the separator is a semicolon.
  58.  
  59.      -l[lockers]
  60.                prints information about locked revisions.  If the
  61.                comma-separated list lockers of login names is
  62.                given, only the revisions locked by the given
  63.                login names are printed.  If the list is omitted,
  64.                all locked revisions are printed.
  65.  
  66.      -rrevisions
  67.                prints information about revisions given in the
  68.                comma-separated list revisions of revisions and
  69.                ranges. A range rev1-rev2 means revisions rev1 to
  70.                rev2 on the same branch, -rev means revisions from
  71.                the beginning of the branch up to and including
  72.                rev, and rev- means revisions starting with rev to
  73.                the end of the branch containing rev. An argument
  74.                that is a branch means all revisions on that
  75.                branch. A range of branches means all revisions on
  76.                the branches in that range.
  77.  
  78.      -sstates  prints information about revisions whose state
  79.                attributes match one of the states given in the
  80.                comma-separated list states.
  81.  
  82.      -w[logins]
  83.                prints information about revisions checked in by
  84.                users with login names appearing in the comma-
  85.                separated list logins.  If logins is omitted, the
  86.                user's login is assumed.
  87.  
  88.      Rlog prints the intersection of the revisions selected with
  89.      the options -d, -l, -s, -w, intersected with the union of
  90.      the revisions selected by -b and -r.
  91.  
  92. EXAMPLES
  93.              rlog  -L  -R  RCS/*,v
  94.              rlog  -L  -h  RCS/*,v
  95.              rlog  -L  -l  RCS/*,v
  96.              rlog  RCS/*,v
  97.  
  98.      The first command prints the names of all RCS files in the
  99.      subdirectory `RCS' which have locks. The second command
  100.      prints the headers of those files, and the third prints the
  101.      headers plus the log messages of the locked revisions.  The
  102.      last command prints complete information.
  103.  
  104. DIAGNOSTICS
  105.      The exit status always refers to the last RCS file operated
  106.      upon, and is 0 if the operation was successful, 1 otherwise.
  107.  
  108. IDENTIFICATION
  109.      Author: Walter F. Tichy, Purdue University, West Lafayette,
  110.      IN, 47907.
  111.      Revision Number: 1.4 ; Release Date: 89/10/30 .
  112.      Copyright c 1982, 1988, 1989 by Walter F. Tichy.
  113.  
  114. SEE ALSO
  115.      ci(L), co(L), ident(L), rcs(L), rcsdiff(L), rcsintro(L),
  116.      rcsmerge(L), rcsfile(L)
  117.      Walter F. Tichy, "Design, Implementation, and Evaluation of
  118.      a Revision Control System," in Proceedings of the 6th Inter-
  119.      national Conference on Software Engineering, IEEE, Tokyo,
  120.      Sept. 1982.
  121.