home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / cvs-1.8.7-src.tgz / tar.out / fsf / cvs / NEWS < prev    next >
Text File  |  1996-09-28  |  42KB  |  974 lines

  1. Changes since 1.8:
  2.  
  3. * New option "--help-synonyms" prints a list of all recognized command
  4. synonyms.
  5.  
  6. * The "log" command is now implemented internally rather than via the
  7. RCS "rlog" program.  The main user-visible consequence is that
  8. symbolic branch names now work (for example "cvs log -rbranch1").
  9.  
  10. * Encryption is now supported over a Kerberos client/server
  11. connection.  The new "-x" global option requests it.
  12.  
  13. * The format of the CVS commit message has changed slightly when
  14. committing changes on a branch.  The tag on which the commit is
  15. ocurring is now reported correctly in all cases.
  16.  
  17. * New flag -k in wrappers allows you to specify the keyword expansion
  18. mode for added files based on their name.  For example, you can
  19. specify that files whose name matches *.exe are binary by default.
  20. See the Wrappers section of cvs.texinfo for more details.
  21.  
  22. * Remote CVS with the "-z" option now uses the zlib library (included
  23. with CVS) to compress all communication between the client and the
  24. server, rather than invoking gzip on each file separately.  This means
  25. that compression is better and there is no need for an external gzip
  26. program (except to interoperate with older version of CVS).
  27.  
  28. * The "cvs rlog" command is deprecated and running it will print a
  29. warning; use the synonymous "cvs log" command instead.  It is
  30. confusing for rlog to mean the same as log because some other CVS
  31. commands are in pairs consisting of a plain command which operates on
  32. a working directory and an "r" command which does not (diff/rdiff;
  33. tag/rtag).
  34.  
  35. * "cvs diff" has a bunch of new options, mostly long options.  Most of
  36. these work only if rcsdiff and diff support them, and are named the
  37. same as the corresponding options to diff.
  38.  
  39. * The -q and -Q command options to "cvs diff" were removed (use the
  40. global options instead).  This brings "cvs diff" into line with the
  41. rest of the CVS commands.
  42.  
  43. * The "annotate" command can now be used to annotate a revision other
  44. than the head revision on the trunk (see the -r, -D, and -f options in
  45. the annotate node of cvs.texinfo for details).
  46.  
  47. * The "tag" command has a new option "-c" which checks that all files
  48.   are not locally modified before tagging.
  49.  
  50. * The -d command line option now overrides the cvsroot setting stored
  51. in the CVS/Root file in each working directory, and specifying -d will
  52. cause CVS/Root to be updated.
  53.  
  54. * Local (non-client/server) CVS now runs on Windows NT.  See
  55. windows-NT/README for details.
  56.  
  57. * The CVSROOT variable specification has changed to support more
  58. access methods.  In addition to "pserver," "server" (rsh), "kserver"
  59. (kerberos), and "local" (local filesystem access) can now be
  60. specified.  For more details on each method, see cvs.texinfo (there is
  61. an index entry for :local: and each of the other access methods).
  62.  
  63. * The "login" command no longer prompts the user for username and
  64. hostname, since one will have to provide that information via the `-d'
  65. flag or by setting CVSROOT.
  66.  
  67. Changes from 1.7 to 1.8:
  68.  
  69. * New "cvs annotate" command to display the last modification for each
  70. line of a file, with the revision number, user checking in the
  71. modification, and date of the modification.  For more information see
  72. the `annotate' node in cvs.texinfo.
  73.  
  74. * The cvsinit shell script has been replaced by a cvs init command.
  75. The cvs init command creates some example administrative files which
  76. are similar to the files found in the examples directory (and copied
  77. by cvsinit) in previous releases.
  78.  
  79. * Added the patterns *.olb *.exe _$* *$ to default ignore list.
  80.  
  81. * There is now a $USER internal variable for *info files.
  82.  
  83. * There is no longer a separate `mkmodules' program; the functionality
  84. is now built into `cvs'.  If upgrading an old repository, it is OK to
  85. leave in the lines in the modules file which run mkmodules (the
  86. mkmodules actions will get done twice, but that is harmless); you will
  87. probably want to remove them once you are no longer using the old CVS.
  88.  
  89. * One can now specify user variables in *info files via the
  90. ${=varname} syntax; there is a -s global option to set them.  See the
  91. Variables node in cvs.texinfo for details.
  92.  
  93. Changes from 1.6 to 1.7:
  94.  
  95. * The default ignore list has changed slightly: *.obj has been added
  96. and CVS* has been changed to CVS CVS.adm.
  97.  
  98. * CVS now supports password authentication when accessing remote
  99. repositories; this is useful for sites that can't use rsh (because of
  100. a firewall, for example), and also don't have kerberos.  See node
  101. "Password authenticated" (in "Remote repositories", in
  102. doc/cvs.texinfo) for more details.  Note: This feature requires both
  103. the client and server to be upgraded.
  104.  
  105. * Using the -kb option to specify binary files now works--most cases
  106. did not work before.  See the "Binary files" section of
  107. doc/cvs.texinfo for details.
  108.  
  109. * New developer communication features.  See the "Watches" section of
  110. doc/cvs.texinfo for details.
  111.  
  112. * RCS keyword "Name" supported for "cvs update -r <tag>" and "cvs
  113. checkout -r <tag>".
  114.  
  115. * If there is a group whose name matches a compiled in value which
  116. defaults to "cvsadmin", only members of that group can use "cvs
  117. admin".  This replaces the CVS_NOADMIN option.
  118.  
  119. * CVS now sets the modes of files in the repository based on the
  120. CVSUMASK environment variable or a compiled in value defaulting to
  121. 002.  This way other developers will be able to access the files in
  122. the repository regardless of the umask of the developer creating them.
  123.  
  124. * The command names in .cvsrc now match the official name of the
  125. command, not the one (possibly an alias) by which it was invoked.  If
  126. you had previously relied on "cvs di" and "cvs diff" using different
  127. options, instead use a shell function or alias (for example "alias
  128. cvsdi='cvs diff -u'").  You also can specify global CVS options (like
  129. "-z") using the command name "cvs".
  130.  
  131. Changes from 1.5 to 1.6:
  132.  
  133. * Del updated the man page to include all of the new features
  134. of CVS 1.6.
  135.  
  136. * "cvs tag" now supports a "-r | -D" option for tagging an already
  137. tagged revision / specific revision of a file.
  138.  
  139. * There is a "taginfo" file in CVSROOT that supports filtering and
  140. recording of tag operations.
  141.  
  142. * Long options support added, including --help and --version options.
  143.  
  144. * "cvs release" no longer cares whether or not the directory being
  145. released has an entry in the `modules' file.
  146.  
  147. * The modules file now takes a -e option which is used instead of -o
  148. for "cvs export".  If your modules file has a -o option which you want
  149. to be used for "cvs export", change it to specify -e as well as -o.
  150.  
  151. * "cvs export" now takes a -k option to set RCS keyword expansion.
  152. This way you can export binary files.  If you want the old behavior,
  153. you need to specify -kv.
  154.  
  155. * "cvs update", "cvs rdiff", "cvs checkout", "cvs import", "cvs
  156. release", "cvs rtag", and "cvs tag" used to take -q and -Q options
  157. after the command name (e.g. "cvs update -q").  This was confusing
  158. because other commands, such as "cvs ci", did not.  So the options
  159. after the command name have been removed and you must now specify, for
  160. example, "cvs -q update", which has been supported since CVS 1.3.
  161.  
  162. * New "wrappers" feature.  This allows you to set a hook which
  163. transforms files on their way in and out of cvs (apparently on the
  164. NeXT there is some particular usefulness in tarring things up in the
  165. repository).  It also allows you to declare files as merge-by-copy
  166. which means that instead of trying to merge the file, CVS will merely
  167. copy the new version.  There is a CVSROOT/cvswrappers file and an
  168. optionsl ~/.cvswrappers file to support this feature.
  169.  
  170. * You can set CVSROOT to user@host:dir, not just host:dir, if your
  171. username on the server host is different than on the client host.
  172.  
  173. * VISUAL is accepted as well as EDITOR.
  174.  
  175. * $CVSROOT is expanded in *info files.
  176.  
  177. Changes from 1.4A2 to 1.5:
  178.  
  179. * Remote implementation.  This is very helpful when collaborating on a
  180. project with someone across a wide-area network.  This release can
  181. also be used locally, like other CVS versions, if you have no need for
  182. remote access.
  183.  
  184. Here are some of the features of the remote implementation:
  185. - It uses reliable transport protocols (TCP/IP) for remote repository
  186.   access, not NFS.  NFS is unusable over long distances (and sometimes
  187.   over short distances)
  188. - It transfers only those files that have changed in the repository or
  189.   the working directory.  To save transmission time, it will transfer
  190.   patches when appropriate, and can compress data for transmission.
  191. - The server never holds CVS locks while waiting for a reply from the client;
  192.   this makes the system robust when used over flaky networks.
  193.  
  194. The remote features are documented in doc/cvsclient.texi in the CVS
  195. distribution, but the main doc file, cvs.texinfo, has not yet been
  196. updated to include the remote features.
  197.  
  198. * Death support.  See src/README-rm-add for more information on this.
  199.  
  200. * Many speedups, especially from jtc@cygnus.com.
  201.  
  202. * CVS 1.2 compatibility code has been removed as a speedup.  If you
  203. have working directories checked out by CVS 1.2, CVS 1.3 or 1.4A2 will
  204. try to convert them, but CVS 1.5 and later will not (if the working
  205. directory is up to date and contains no extraneous files, you can just
  206. remove it, and then check out a new working directory).  Likewise if
  207. your repository contains a CVSROOT.adm directory instead of a CVSROOT
  208. directory, you need to rename it.
  209.  
  210. Fri Oct 21 20:58:54 1994  Brian Berliner  <berliner@sun.com>
  211.  
  212.     * Changes between CVS 1.3 and CVS 1.4 Alpha-2
  213.  
  214.     * A new program, "cvsbug", is provided to let you send bug reports
  215.     directly to the CVS maintainers.  Please use it instead of sending
  216.     mail to the info-cvs mailing list.  If your build fails, you may
  217.     have to invoke "cvsbug" directly from the "src" directory as
  218.     "src/cvsbug.sh".
  219.  
  220.     * A new User's Guide and Tutorial, written by Per Cederqvist
  221.     <ceder@signum.se> of Signum Support.  See the "doc" directory.  A
  222.     PostScript version is included as "doc/cvs.ps".
  223.  
  224.     * The Frequesntly Asked Questions file, FAQ, has been added to the
  225.     release.  Unfortunately, its contents are likely out-of-date.
  226.  
  227.     * The "cvsinit" shell script is now installed in the $prefix/bin
  228.     directory like the other programs.  You can now create new
  229.     CVS repositories with great ease.
  230.  
  231.     * Index: lines are now printed on output from 'diff' and 'rdiff',
  232.     in order to facilitate application of patches to multiple subdirs.
  233.  
  234.     * Support for a ~/.cvsrc file, which allows you to specify options
  235.     that are always supposed to be given to a specific command.  This
  236.     feature shows the non-orthogonality of the option set, since while
  237.     there may be an option to turn something on, the option to turn
  238.     that same thing off may not exist.
  239.  
  240.     * You can now list subdirectories that you wish to ignore in a
  241.     modules listing, such as:
  242.  
  243.         gcc  -a gnu/gcc, !gnu/gcc/testsuites
  244.  
  245.     which will check out everything underneath gnu/gcc, except
  246.     everything underneath gnu/gcc/testsuites.
  247.  
  248.     * It is now much harder to accidentally overwrite an existing tag
  249.     name, since attempting to move a tag name will result in a error,
  250.     unless the -F (force) flag is given to the tag subcommands.
  251.  
  252.     * Better error checking on matching of the repository used to
  253.     check code out from against the repository the current cvs
  254.     commnands would use. (Thanks to Mark Baushke <mdb@cisco.com>)
  255.  
  256.     * Better support for sites with multiple CVSROOT repositories has
  257.     been contributed.  The file "CVS/Root" in your working directory
  258.     is created to hold the full path to the CVS repository and a
  259.     simple check is made against your current CVSROOT setting.
  260.  
  261.     * You can now specify an RCS keyword substitution value when you
  262.     import files into the repository.
  263.  
  264.     * Uses a much newer version of Autoconf, and conforms to the GNU
  265.     coding standards much more closely.  No, it still doesn't have
  266.     long option names.
  267.  
  268.     * Code cleanup.  Many passes through gcc -Wall helped to identify
  269.     a number of questionable constructs.  Most arbitrary length limits
  270.     were removed.
  271.  
  272.     * Profiling to determine bottlenecks helped to identify the best
  273.     places to spend time speeding up the code, which was then done.  A
  274.     number of performance enhancements in filename matching have sped
  275.     up checkouts.
  276.  
  277.     * Many more contributions have been added to the "contrib"
  278.     directory.  See the README file in that directory for more
  279.     information.
  280.  
  281.     * "cvs commit" will try harder to not change the file's
  282.     modification time after the commit.  If the file does not change
  283.     as a result of the commit operation, CVS will preserve the
  284.     original modification time, thus speeding up future make-type
  285.     builds.
  286.  
  287.     * "cvs commit" now includes any removed files in the (optional)
  288.     pre-commit checking program that may be invoked.  Previously, only
  289.     added and modified files were included.
  290.  
  291.     * It is now possible to commit a file directly onto the trunk at a
  292.     specific revision level by doing "cvs commit -r3.0 file.c", where
  293.     "3.0" specifies the revision you wish to create.  The file must be
  294.     up-to-date with the current head of the trunk for this to succeed.
  295.  
  296.     * "cvs commit" will now function with a pre-commit program that
  297.     has arguments specified in the "commitinfo" file.
  298.  
  299.     * The "mkmodules" program will now look within the
  300.     $CVSROOT/CVSROOT/checkoutlist" file for any additional files that
  301.     should be automatically checked out within CVSROOT; mkmodules also
  302.     tries harder to preserve any execute bits the files may have
  303.     originally had.
  304.  
  305.     * "cvs diff" is much more accurate about its exit status now.  It
  306.     now returns the maximum exit status of any invoked diff.
  307.  
  308.     * The "-I !" option is now supported for the import and update
  309.     commands correctly.  It will properly clear the ignore list now.
  310.  
  311.     * Some problems with "cvs import" handling of .cvsignore have been
  312.     fixed; as well, some rampant recursion problems with import have
  313.     also been fixed.
  314.  
  315.     * "cvs rdiff" (aka "cvs patch") now tries to set the modify time
  316.     of any temporary files it uses to match those specified for the
  317.     particular revision.  This allows a more accurate patch image to
  318.     be created.
  319.  
  320.     * "cvs status" has improved revision descriptions.  "Working
  321.     revision" is used for the revision of the working file that you
  322.     edit directly; "Repository revision" is the revision of the file
  323.     with the $CVSROOT source repository.  Also, the output is clearer
  324.     with regard to sticky and branch revisions.
  325.  
  326.     * CVS no longer dumps core when given a mixture of directories and
  327.     files in sub-directories (as in "cvs ci file1 dir1/file2").
  328.     Instead, arguments are now clumped into their respective directory
  329.     and operated on in chunks, together.
  330.  
  331.     * If the CVSEDITOR environment variable is set, that editor is
  332.     used for log messages instead of the EDITOR environment variable.
  333.     This makes it easy to substitute intelligent programs to make more
  334.     elaborate log messages.  Contributed by Mark D Baushke
  335.     (mdb@cisco.com).
  336.  
  337.     * Command argument changes:
  338.     cvs:            The "-f" option has been added to ignore
  339.                 the ~/.cvsrc file.
  340.     commit:            Renamed the "-f logfile" option to the
  341.                 "-F logfile" option.  Added the "-f"
  342.                 option to force a commit of the specified
  343.                 files (this disables recursion).
  344.     history:        Added "-t timezone" option to force any
  345.                 date-specific output into the specified
  346.                 timezone.
  347.     import:            Added "-d" option to use the file's
  348.                 modification time as the time of the
  349.                 import. Added "-k sub" option to set the
  350.                 default RCS keyword substitution mode for
  351.                 newly-created files.
  352.     remove:            Added "-f" option to force the file's
  353.                 automatic removal if it still exists in
  354.                 the working directory (use with caution).
  355.     rtag:            Added "-F" option to move the tag if it
  356.                 already exists -- new default is to NOT
  357.                 move tags automatically.
  358.     tag:            Added "-F" option to move the tag if it
  359.                 already exists -- new default is to NOT
  360.                 move tags automatically.
  361.  
  362. Tue Apr  7 15:55:25 1992  Brian Berliner  (berliner at sun.com)
  363.  
  364.     * Changes between CVS 1.3 Beta-3 and official CVS 1.3!
  365.  
  366.     * A new shell script is provided, "./cvsinit", which can be run at
  367.     install time to help setup your $CVSROOT area.  This can greatly
  368.     ease your entry into CVS usage.
  369.  
  370.     * The INSTALL file has been updated to include the machines on
  371.     which CVS has compiled successfully.  I think CVS 1.3 is finally
  372.     portable.  Thanks to all the Beta testers!
  373.  
  374.     * Support for the "editinfo" file was contributed.  This file
  375.     (located in $CVSROOT/CVSROOT) can be used to specify a special
  376.     "editor" to run on a per-directory basis within the repository,
  377.     instead of the usual user's editor.  As such, it can verify that
  378.     the log message entered by the user is of the appropriate form
  379.     (contains a bugid and test validation, for example).
  380.  
  381.     * The manual pages cvs(1) and cvs(5) have been updated.
  382.  
  383.     * The "mkmodules" command now informs you when your modules file
  384.     has duplicate entries.
  385.  
  386.     * The "add" command now preserves any per-directory sticky tag when
  387.     you add a new directory to your checked-out sources.
  388.  
  389.     * The "admin" command is now a fully recursive interface to the
  390.     "rcs" program which operates on your checked-out sources.  It no
  391.     longer requires you to specify the full path to the RCS file.
  392.  
  393.     * The per-file sticky tags can now be effectively removed with
  394.     "cvs update -A file", even if you had checked out the whole
  395.     directory with a per-directory sticky tag.  This allows a great
  396.     deal of flexibility in managing the revisions that your checked-out
  397.     sources are based upon (both per-directory and per-file sticky
  398.     tags).
  399.  
  400.     * The "cvs -n commit" command now works, to show which files are
  401.     out-of-date and will cause the real commit to fail, or which files
  402.     will fail any pre-commit checks.  Also, the "cvs -n import ..."
  403.     command will now show you what it would've done without actually
  404.     doing it.
  405.  
  406.     * Doing "cvs commit modules" to checkin the modules file will no
  407.     properly run the "mkmodules" program (assuming you have setup your
  408.     $CVSROOT/CVSROOT/modules file to do so).
  409.  
  410.     * The -t option in the modules file (which specifies a program to
  411.     run when you do a "cvs rtag" operation on a module) now gets the
  412.     symbolic tag as the second argument when invoked.
  413.  
  414.     * When the source repository is locked by another user, that user's
  415.     login name will be displayed as the holder of the lock.
  416.  
  417.     * Doing "cvs checkout module/file.c" now works even if
  418.     module/file.c is in the Attic (has been removed from main-line
  419.     development).
  420.  
  421.     * Doing "cvs commit */Makefile" now works as one would expect.
  422.     Rather than trying to commit everything recursively, it will now
  423.     commit just the files specified.
  424.  
  425.     * The "cvs remove" command is now fully recursive.  To schedule a
  426.     file for removal, all you have to do is "rm file" and "cvs rm".
  427.     With no arguments, "cvs rm" will schedule all files that have been
  428.     physically removed for removal from the source repository at the
  429.     next "cvs commit".
  430.  
  431.     * The "cvs tag" command now prints "T file" for each file that was
  432.     tagged by this invocation and "D file" for each file that had the
  433.     tag removed (as with "cvs tag -d").
  434.  
  435.     * The -a option has been added to "cvs rtag" to force it to clean
  436.     up any old, matching tags for files that have been removed (in the
  437.     Attic) that may not have been touched by this tag operation.  This
  438.     can help keep a consistent view with your tag, even if you re-use
  439.     it frequently.
  440.  
  441. Sat Feb 29 16:02:05 1992  Brian Berliner  (berliner at sun.com)
  442.  
  443.     * Changes between CVS 1.3 Beta-2 and CVS 1.3 Beta-3
  444.  
  445.     * Many portability fixes, thanks to all the Beta testers!  With any
  446.     luck, this Beta release will compile correctly on most anything.
  447.     Hey, what are we without our dreams.
  448.  
  449.     * CVS finally has support for doing isolated development on a
  450.     branch off the current (or previous!) revisions.  This is also
  451.     extremely nice for generating patches for previously released
  452.     software while development is progressing on the next release.
  453.     Here's an example of creating a branch to fix a patch with the 2.0
  454.     version of the "foo" module, even though we are already well into
  455.     the 3.0 release.  Do:
  456.  
  457.         % cvs rtag -b -rFOO_2_0 FOO_2_0_Patch foo
  458.         % cvs checkout -rFOO_2_0_Patch foo
  459.         % cd foo
  460.         [[ hack away ]]
  461.         % cvs commit
  462.  
  463.     A physical branch will be created in the RCS file only when you
  464.     actually commit the change.  As such, forking development at some
  465.     random point in time is extremely light-weight -- requiring just a
  466.     symbolic tag in each file until a commit is done.  To fork
  467.     development at the currently checked out sources, do:
  468.  
  469.         % cvs tag -b Personal_Hack
  470.         % cvs update -rPersonal_Hack
  471.         [[ hack away ]]
  472.         % cvs commit
  473.  
  474.     Now, if you decide you want the changes made in the Personal_Hack
  475.     branch to be merged in with other changes made in the main-line
  476.     development, you could do:
  477.  
  478.         % cvs commit             # to make Personal_Hack complete
  479.         % cvs update -A             # to update sources to main-line
  480.         % cvs update -jPersonal_Hack # to merge Personal_Hack
  481.  
  482.     to update your checked-out sources, or:
  483.  
  484.         % cvs checkout -jPersonal_Hack module
  485.  
  486.     to checkout a fresh copy.
  487.  
  488.     To support this notion of forked development, CVS reserves
  489.     all even-numbered branches for its own use.  In addition, CVS
  490.     reserves the ".0" and ".1" branches.  So, if you intend to do your
  491.     own branches by hand with RCS, you should use odd-numbered branches
  492.     starting with ".3", as in "1.1.3", "1.1.5", 1.2.9", ....
  493.  
  494.     * The "cvs commit" command now supports a fully functional -r
  495.     option, allowing you to commit your changes to a specific numeric
  496.     revision or symbolic tag with full consistency checks.  Numeric
  497.     tags are useful for bringing your sources all up to some revision
  498.     level:
  499.  
  500.         % cvs commit -r2.0
  501.  
  502.     For symbolic tags, you can only commit to a tag that references a
  503.     branch in the RCS file.  One created by "cvs rtag -b" or from
  504.     "cvs tag -b" is appropriate (see below).
  505.  
  506.     * Roland Pesch <pesch@cygnus.com> and K. Richard Pixley
  507.     <rich@cygnus.com> were kind enough to contribute two new manual
  508.     pages for CVS: cvs(1) and cvs(5).  Most of the new CVS 1.3 features
  509.     are now documented, with the exception of the new branch support
  510.     added to commit/rtag/tag/checkout/update.
  511.  
  512.     * The -j options of checkout/update have been added.  The "cvs join"
  513.     command has been removed.
  514.  
  515.     With one -j option, CVS will merge the changes made between the
  516.     resulting revision and the revision that it is based on (e.g., if
  517.     the tag refers to a branch, CVS will merge all changes made in
  518.     that branch into your working file).
  519.  
  520.     With two -j options, CVS will merge in the changes between the two
  521.     respective revisions.  This can be used to "remove" a certain delta
  522.     from your working file.  E.g., If the file foo.c is based on
  523.     revision 1.6 and I want to remove the changes made between 1.3 and
  524.     1.5, I might do:
  525.  
  526.         % cvs update -j1.5 -j1.3 foo.c        # note the order...
  527.  
  528.     In addition, each -j option can contain on optional date
  529.     specification which, when used with branches, can limit the chosen
  530.     revision to one within a specific date.  An optional date is
  531.     specified by adding a colon (:) to the tag, as in:
  532.  
  533.         -jSymbolic_Tag:Date_Specifier
  534.  
  535.     An example might be what "cvs import" tells you to do when you have
  536.     just imported sources that have conflicts with local changes:
  537.  
  538.         % cvs checkout -jTAG:yesterday -jTAG module
  539.  
  540.     which tells CVS to merge in the changes made to the branch
  541.     specified by TAG in the last 24 hours.  If this is not what is
  542.     intended, substitute "yesterday" for whatever format of date that
  543.     is appropriate, like:
  544.  
  545.         % cvs checkout -jTAG:'1 week ago' -jTAG module
  546.  
  547.     * "cvs diff" now supports the special tags "BASE" and "HEAD".  So,
  548.     the command:
  549.  
  550.         % cvs diff -u -rBASE -rHEAD
  551.  
  552.     will effectively show the changes made by others (in unidiff
  553.     format) that will be merged into your working sources with your
  554.     next "cvs update" command.  "-rBASE" resolves to the revision that
  555.     your working file is based on.  "-rHEAD" resolves to the current
  556.     head of the branch or trunk that you are working on.
  557.  
  558.     * The -P option of "cvs checkout" now means to Prune empty
  559.     directories, as with "update".  The default is to not remove empty
  560.     directories.  However, if you do "checkout" with any -r options, -P
  561.     will be implied.  I.e., checking out with a tag will cause empty
  562.     directories to be pruned automatically.
  563.  
  564.     * The new file INSTALL describes how to install CVS, including
  565.     detailed descriptions of interfaces to "configure".
  566.  
  567.     * The example loginfo file in examples/loginfo has been updated to
  568.     use the perl script included in contrib/log.pl.  The nice thing
  569.     about this log program is that it records the revision numbers of
  570.     your change in the log message.
  571.  
  572.     Example files for commitinfo and rcsinfo are now included in the
  573.     examples directory.
  574.  
  575.     * All "#if defined(__STDC__) && __STDC__ == 1" lines have been
  576.     changed to be "#if __STDC__" to fix some problems with the former.
  577.  
  578.     * The lib/regex.[ch] files have been updated to the 1.3 release of
  579.     the GNU regex package.
  580.  
  581.     * The ndbm emulation routines included with CVS 1.3 Beta-2 in the
  582.     src/ndbm.[ch] files has been moved into the src/myndbm.[ch] files
  583.     to avoid any conflict with the system <ndbm.h> header file.  If
  584.     you had a previous CVS 1.3 Beta release, you will want to "cvs
  585.     remove ndbm.[ch]" form your copy of CVS as well.
  586.  
  587.     * "cvs add" and "cvs remove" are a bit more verbose, telling you
  588.     what to do to add/remove your file permanently.
  589.  
  590.     * We no longer mess with /dev/tty in "commit" and "add".
  591.  
  592.     * More things are quiet with the -Q option set.
  593.  
  594.     * New src/config.h option:  If CVS_BADROOT is set, CVS will not
  595.     allow people really logged in as "root" to commit changes.
  596.  
  597.     * "cvs diff" exits with a status of 0 if there were no diffs, 1 if
  598.     there were diffs, and 2 if there were errors.
  599.  
  600.     * "cvs -n diff" is now supported so that you can still run diffs
  601.     even while in the middle of committing files.
  602.  
  603.     * Handling of the CVS/Entries file is now much more robust.
  604.  
  605.     * The default file ignore list now includes "*.so".
  606.  
  607.     * "cvs import" did not expand '@' in the log message correctly.  It
  608.     does now.  Also, import now uses the ignore file facility
  609.     correctly.
  610.  
  611.     Import will now tell you whether there were conflicts that need to
  612.     be resolved, and how to resolve them.
  613.  
  614.     * "cvs log" has been changed so that you can "log" things that are
  615.     not a part of the current release (in the Attic).
  616.  
  617.     * If you don't change the editor message on commit, CVS now prompts
  618.     you with the choice:
  619.  
  620.         !)reuse this message unchanged for remaining dirs
  621.  
  622.     which allows you to tell CVS that you have no intention of changing
  623.     the log message for the remainder of the commit.
  624.  
  625.     * It is no longer necessary to have CVSROOT set if you are using
  626.     the -H option to get Usage information on the commands.
  627.  
  628.     * Command argument changes:
  629.     checkout:        -P handling changed as described above.
  630.                 New -j option (up to 2 can be specified)
  631.                 for doing rcsmerge kind of things on
  632.                 checkout.
  633.     commit:            -r option now supports committing to a
  634.                 numeric or symbolic tags, with some
  635.                 restrictions.  Full consistency checks will
  636.                 be done.
  637.                 Added "-f logfile" option, which tells
  638.                 commit to glean the log message from the
  639.                 specified file, rather than invoking the
  640.                 editor.
  641.     rtag:            Added -b option to create a branch tag,
  642.                 useful for creating a patch for a previous
  643.                 release, or for forking development.
  644.     tag:            Added -b option to create a branch tag,
  645.                 useful for creating a patch for a previous
  646.                 release, or for forking development.
  647.     update:            New -j option (up to 2 can be specified)
  648.                 for doing rcsmerge kind of things on
  649.                 update.
  650.  
  651. Thu Jan  9 10:51:35 MST 1992 Jeff Polk (polk at BSDI.COM)
  652.  
  653.     * Changes between CVS 1.3 Beta-1 and CVS 1.3 Beta-2
  654.  
  655.     * Thanks to K. Richard Pixley at Cygnus we now have function
  656.     prototypes in all the files
  657.  
  658.     * Some small changes to configure for portability.  There have
  659.     been other portability problems submitted that have not been fixed
  660.     (Brian will be working on those).  Additionally all __STDC__
  661.     tests have been modified to check __STDC__ against the constant 1 
  662.     (this is what the Second edition of K&R says must be true).
  663.  
  664.     * Lots of additional error checking for forked processes (run_exec)
  665.     (thanks again to K. Richard Pixley)
  666.  
  667.     * Lots of miscellaneous bug fixes - including but certainly not 
  668.     limited to:
  669.         various commit core dumps
  670.         various update core dumps
  671.         bogus results from status with numeric sticky tags
  672.         commitprog used freed memory
  673.         Entries file corruption caused by No_Difference
  674.         commit to revision broken (now works if branch exists)
  675.         ignore file processing broken for * and !
  676.         ignore processing didn't handle memory reasonably
  677.         miscellaneous bugs in the recursion processor
  678.         file descriptor leak in ParseInfo
  679.         CVSROOT.adm->CVSROOT rename bug
  680.         lots of lint fixes
  681.  
  682.     * Reformatted all the code in src (with GNU indent) and then 
  683.     went back and fixed prototypes, etc since indent gets confused.  The
  684.     rationale is that it is better to do it sooner than later and now
  685.     everything is consistent and will hopefully stay that way.
  686.     The basic options to indent were: "-bad -bbb -bap -cdb -d0 -bl -bli0 
  687.     -nce -pcs -cs -cli4 -di1 -nbc -psl -lp -i4 -ip4 -c41"  and then
  688.     miscellaneous formatting fixes were applied.  Note also that the 
  689.     "-nfc1" or "-nfca" may be appropriate in files where comments have
  690.     been carefully formatted (e.g, modules.c).
  691.  
  692. Sat Dec 14 20:35:22 1991  Brian Berliner  (berliner at sun.com)
  693.  
  694.     * Changes between CVS 1.2 and CVS 1.3 Beta are described here.
  695.  
  696.     * Lots of portability work.  CVS now uses the GNU "configure"
  697.     script to dynamically determine the features provided by your
  698.     system.  It probably is not foolproof, but it is better than
  699.     nothing.  Please let me know of any portability problems.  Some
  700.     file names were changed to fit within 14-characters.
  701.  
  702.     * CVS has a new RCS parser that is much more flexible and
  703.     extensible.  It should read all known RCS ",v" format files.
  704.  
  705.     * Most of the commands now are fully recursive, rather than just
  706.     operating on the current directory alone.  This includes "commit",
  707.     which makes it real easy to do an "atomic" commit of all the
  708.     changes made to a CVS hierarchy of sources.  Most of the commands
  709.     also correctly handle file names that are in directories other than
  710.     ".", including absolute path names.  Commands now accept the "-R"
  711.     option to force recursion on (though it is always the default now)
  712.     and the "-l" option to force recursion off, doing just "." and not
  713.     any sub-directories.
  714.  
  715.     * CVS supports many of the features provided with the RCS 5.x
  716.     distribution - including the new "-k" keyword expansion options.  I
  717.     recommend using RCS 5.x (5.6 is the current official RCS version)
  718.     and GNU diff 1.15 (or later) distributions with CVS.
  719.  
  720.     * Checking out files with symbolic tags/dates is now "sticky", in
  721.     that CVS remembers the tag/date used for each file (and directory)
  722.     and will use that tag/date automatically on the next "update" call.
  723.     This stickyness also holds for files checked out with the the new
  724.     RCS 5.x "-k" options.
  725.  
  726.     * The "cvs diff" command now recognizes all of the rcsdiff 5.x
  727.     options.  Unidiff format is available by installing the GNU
  728.     diff 1.15 distribution.
  729.  
  730.     * The old "CVS.adm" directories created on checkout are now called
  731.     "CVS" directories, to look more like "RCS" and "SCCS".  Old CVS.adm
  732.     directories are automagically converted to CVS directories.  The
  733.     old "CVSROOT.adm" directory within the source repository is
  734.     automagically changed into a "CVSROOT" directory as well.
  735.  
  736.     * Symbolic links in the source repository are fully supported ONLY
  737.     if you use RCS 5.6 or later and (of course) your system supports
  738.     symlinks.
  739.  
  740.     * A history database has been contributed which maintains the
  741.     history of certain CVS operations, as well as providing a wide array
  742.     of querying options.
  743.  
  744.     * The "cvs" program has a "-n" option which can be used with the
  745.     "update" command to show what would be updated without actually
  746.     doing the update, like:  "cvs -n update".  All usage statements
  747.     have been cleaned up and made more verbose.
  748.  
  749.     * The module database parsing has been rewritten.  The new format
  750.     is compatible with the old format, but with much more
  751.     functionality.  It allows modules to be created that grab pieces or
  752.     whole directories from various different parts of your source
  753.     repository.  Module-relative specifications are also correctly
  754.     recognized now, like "cvs checkout module/file.c".
  755.  
  756.     * A configurable template can be specified such that on a "commit", 
  757.     certain directories can supply a template that the user must fill
  758.     before completing the commit operation.
  759.  
  760.     * A configurable pre-commit checking program can be specified which
  761.     will run to verify that a "commit" can happen.  This feature can be
  762.     used to restrict certain users from changing certain pieces of the
  763.     source repository, or denying commits to the entire source
  764.     repository.
  765.  
  766.     * The new "cvs export" command is much like "checkout", but
  767.     establishes defaults suitable for exporting code to others (expands
  768.     out keywords, forces the use of a symbolic tag, and does not create
  769.     "CVS" directories within the checked out sources.
  770.  
  771.     * The new "cvs import" command replaces the deprecated "checkin"
  772.     shell script and is used to import sources into CVS control.  It is
  773.     also much faster for the first-time import.  Some algorithmic
  774.     improvements have also been made to reduce the number of
  775.     conflicting files on next-time imports.
  776.  
  777.     * The new "cvs admin" command is basically an interface to the
  778.     "rcs" program.  (Not yet implemented very well).
  779.  
  780.     * Signal handling (on systems with BSD or POSIX signals) is much
  781.     improved.  Interrupting CVS now works with a single interrupt!
  782.  
  783.     * CVS now invokes RCS commands by direct fork/exec rather than
  784.     calling system(3).  This improves performance by removing a call to
  785.     the shell to parse the arguments.
  786.  
  787.     * Support for the .cvsignore file has been contributed.  CVS will
  788.     now show "unknown" files as "? filename" as the result of an "update"
  789.     command.  The .cvsignore file can be used to add files to the
  790.     current list of ignored files so that they won't show up as unknown.
  791.  
  792.     * Command argument changes:
  793.     cvs:        Added -l to turn off history logging.
  794.             Added -n to show what would be done without actually
  795.             doing anything.
  796.             Added -q/-Q for quiet and really quiet settings.
  797.             Added -t to show debugging trace.
  798.     add:        Added -k to allow RCS 5.x -k options to be specified.
  799.     admin:        New command; an interface to rcs(1).
  800.     checkout:    Added -A to reset sticky tags/date/options.
  801.             Added -N to not shorten module paths.
  802.             Added -R option to force recursion.
  803.             Changed -p (prune empty directories) to -P option.
  804.             Changed -f option; forcing tags match is now default.
  805.             Added -p option to checkout module to standard output.
  806.             Added -s option to cat the modules db with status.
  807.             Added -d option to checkout in the specified directory.
  808.             Added -k option to use RCS 5.x -k support.
  809.     commit:        Removed -a option; use -l instead.
  810.             Removed -f option.
  811.             Added -l option to disable recursion.
  812.             Added -R option to force recursion.
  813.             If no files specified, commit is recursive.
  814.     diff:        Now recognizes all RCS 5.x rcsdiff options.
  815.             Added -l option to disable recursion.
  816.             Added -R option to force recursion.
  817.     history:    New command; displays info about CVS usage.
  818.     import:        Replaces "checkin" shell script; imports sources
  819.             under CVS control.  Ignores files on the ignore
  820.             list (see -I option or .cvsignore description above).
  821.     export:        New command; like "checkout", but w/special options
  822.             turned on by default to facilitate exporting sources.
  823.     join:        Added -B option to join from base of the branch;
  824.             join now defaults to only joining with the top two
  825.             revisions on the branch.
  826.             Added -k option for RCS 5.x -k support.
  827.     log:        Supports all RCS 5.x options.
  828.             Added -l option to disable recursion.
  829.             Added -R option to force recursion.
  830.     patch:        Changed -f option; forcing tags match is now default.
  831.             Added -c option to force context-style diffs.
  832.             Added -u option to support unidiff-style diffs.
  833.             Added -V option to support RCS specific-version
  834.             keyword expansion formats.
  835.             Added -R option to force recursion.
  836.     remove:        No option changes.  It's a bit more verbose.
  837.     rtag:        Equivalent to the old "cvs tag" command.
  838.             No option changes.  It's a lot faster for re-tag.
  839.     status:        New output formats with more information.
  840.             Added -l option to disable recursion.
  841.             Added -R option to force recursion.
  842.             Added -v option to show symbolic tags for files.
  843.     tag:        Functionality changed to tag checked out files
  844.             rather than modules; use "rtag" command to get the
  845.             old "cvs tag" behaviour.
  846.     update:        Added -A to reset sticky tags/date/options.
  847.             Changed -p (prune empty directories) to -P option.
  848.             Changed -f option; forcing tags match is now default.
  849.             Added -p option to checkout module to standard output.
  850.             Added -I option to add files to the ignore list.
  851.             Added -R option to force recursion.
  852.  
  853.     Major Contributors:
  854.  
  855.     * Jeff Polk <polk@bsdi.com> rewrote most of the grody code of CVS
  856.     1.2.  He made just about everything dynamic (by using malloc),
  857.     added a generic hashed list manager, re-wrote the modules database
  858.     parsing in a compatible - but extended way, generalized directory
  859.     hierarchy recursion for virtually all the commands (including
  860.     commit!), generalized the loginfo file to be used for pre-commit
  861.     checks and commit templates, wrote a new and flexible RCS parser,
  862.     fixed an uncountable number of bugs, and helped in the design of
  863.     future CVS features.  If there's anything gross left in CVS, it's
  864.     probably my fault!
  865.  
  866.     * David G. Grubbs <dgg@odi.com> contributed the CVS "history" and
  867.     "release" commands.  As well as the ever-so-useful "-n" option of
  868.     CVS which tells CVS to show what it would do, without actually
  869.     doing it.  He also contributed support for the .cvsignore file.
  870.  
  871.     * Paul Sander, HaL Computer Systems, Inc. <paul@hal.com> wrote and
  872.     contributed the code in lib/sighandle.c.  I added support for
  873.     POSIX, BSD, and non-POSIX/non-BSD systems.
  874.  
  875.     * Free Software Foundation contributed the "configure" script and
  876.     other compatibility support in the "lib" directory, which will help
  877.     make CVS much more portable.
  878.  
  879.     * Many others have contributed bug reports and enhancement requests.
  880.     Some have even submitted actual code which I have not had time yet
  881.     to integrate into CVS.  Maybe for the next release.
  882.  
  883.     * Thanks to you all!
  884.  
  885. Wed Feb  6 10:10:58 1991  Brian Berliner  (berliner at sun.com)
  886.  
  887.     * Changes from CVS 1.0 Patchlevel 1 to CVS 1.0 Patchlevel 2; also
  888.     known as "Changes from CVS 1.1 to CVS 1.2".
  889.  
  890.     * Major new support with this release is the ability to use the
  891.     recently-posted RCS 5.5 distribution with CVS 1.2.  See below for
  892.     other assorted bug-fixes that have been thrown in.
  893.  
  894.     * ChangeLog (new): Added Emacs-style change-log file to CVS 1.2
  895.     release.  Chronological description of changes between release.
  896.  
  897.     * README: Small fixes to installation instructions.  My email
  898.     address is now "berliner@sun.com".
  899.  
  900.     * src/Makefile: Removed "rcstime.h".  Removed "depend" rule.
  901.  
  902.     * src/partime.c:  Updated to RCS 5.5 version with hooks for CVS.
  903.     * src/maketime.c: Updated to RCS 5.5 version with hooks for CVS.
  904.     * src/rcstime.h:  Removed from the CVS 1.2 distribution.
  905.     Thanks to Paul Eggert <eggert@twinsun.com> for these changes.
  906.  
  907.     * src/checkin.csh: Support for RCS 5.5 parsing.
  908.     Thanks to Paul Eggert <eggert@twinsun.com> for this change.
  909.  
  910.     * src/collect_sets.c (Collect_Sets): Be quieter if "-f" option is
  911.     specified.  When checking out files on-top-of other files that CVS
  912.     doesn't know about, run a diff in the hopes that they are really
  913.     the same file before aborting.
  914.  
  915.     * src/commit.c (branch_number): Fix for RCS 5.5 parsing.
  916.     Thanks to Paul Eggert <eggert@twinsun.com> for this change.
  917.  
  918.     * src/commit.c (do_editor): Bug fix - fprintf missing argument
  919.     which sometimes caused core dumps.
  920.  
  921.     * src/modules.c (process_module): Properly NULL-terminate
  922.     update_dir[] in all cases.
  923.  
  924.     * src/no_difference.c (No_Difference): The wrong RCS revision was
  925.     being registered in certain (strange) cases.
  926.  
  927.     * src/patch.c (get_rcsdate): New algorithm.  No need to call
  928.     maketime() any longer.
  929.     Thanks to Paul Eggert <eggert@twinsun.com> for this change.
  930.  
  931.     * src/patchlevel.h: Increased patch level to "2".
  932.  
  933.     * src/subr.c (isdir, islink): Changed to compare stat mode bits
  934.     correctly.
  935.  
  936.     * src/tag.c (tag_file): Added support for following symbolic links
  937.     that are in the master source repository when tagging.  Made tag
  938.     somewhat quieter in certain cases.
  939.  
  940.     * src/update.c (update_process_lists): Unlink the user's file if it
  941.     was put on the Wlist, meaning that the user's file is not modified
  942.     and its RCS file has been removed by someone else.
  943.  
  944.     * src/update.c (update): Support for "cvs update dir" to correctly
  945.     just update the argument directory "dir".
  946.  
  947.     * src/cvs.h: Fixes for RCS 5.5 parsing.
  948.     * src/version_number.c (Version_Number): Fixes for parsing RCS 5.5
  949.     and older RCS-format files.
  950.     Thanks to Paul Eggert <eggert@twinsun.com> for these changes.
  951.  
  952.     * src/version_number.c (Version_Number): Bug fixes for "-f" option.
  953.     Bug fixes for parsing with certain branch numbers.  RCS
  954.     revision/symbol parsing is much more solid now.
  955.  
  956. Wed Feb 14 10:01:33 1990  Brian Berliner  (berliner at sun.com)
  957.  
  958.     * Changes from CVS 1.0 Patchlevel 0 to CVS 1.0 Patchlevel 1; also
  959.     known as "Changes from CVS 1.0 to CVS 1.1".
  960.  
  961.     * src/patch.c (get_rcsdate): Portability fix.  Replaced call to
  962.     timelocal() with call to maketime().
  963.  
  964. Mon Nov 19 23:15:11 1990  Brian Berliner  (berliner at prisma.com)
  965.  
  966.     * Sent CVS 1.0 release to comp.sources.unix moderator and FSF.
  967.  
  968.     * Special thanks to Dick Grune <dick@cs.vu.nl> for his work on the
  969.     1986 version of CVS and making it available to the world.  Dick's
  970.     version is available on uunet.uu.net in the
  971.     comp.sources.unix/volume6/cvs directory.
  972.  
  973. $CVSid: @(#)ChangeLog 1.35 94/10/22 $
  974.