home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cvs1107.zip / FAQ < prev    next >
Text File  |  1998-09-25  |  345KB  |  8,557 lines

  1. This file contains a CVS FAQ.  Until 1995 it was maintained by David
  2. Grubbs.  It was out of date and not being maintained, but it had a
  3. certain following and in 1997 Pascal Molli decided to start
  4. maintaining it with the FAQ-O-Matic package which allows any
  5. contributor with a web browser to help maintain it.  The following
  6. text is (mostly automatically) extracted from the FAQ-O-Matic.  The
  7. odds are good that the file that you are currently reading is out of
  8. date with respect to the online FAQ-O-Matic, which is part of Pascal
  9. Molli's CVS web site at http://www.loria.fr/~molli/cvs-index.html
  10. (currently under "Documentation").  The online version is also
  11. somewhat better in terms of things like tables of contents (at least
  12. until someone can write some code to extract data from a FAQ-O-Matic
  13. and insert things like tables of contents).
  14.  
  15. The answers which are dated "6/13/1997" below are really from the 1995
  16. FAQ, for the most part.  Many of them are out of date.  If you have
  17. some time, you are encouraged to double-check them against other
  18. sources like the Cederqvist manual and update the FAQ.  If you don't
  19. have such time, take them with a grain of salt or a few.
  20.  
  21.   Category: /, all questions
  22.   
  23.   Category: /
  24.   
  25.           " [INLINE] "
  26.           
  27.     1. About FAQ-O-Matic 
  28.     
  29. This is FAQ-O-Matic, a quick-and-dirty Perl hack (aren't they all?) by
  30. Jon Howell.
  31.  
  32. It seems like most FAQ maintainers make a valiant initial effort, then get
  33. a life and don't have time to keep their FAQs up to date. Also, I often
  34. find out a solution to a problem, and feel like I could write a single
  35. FAQ answer on it in a few minutes, but where to post it?
  36.  
  37. Thus the FAQ-O-Matic was born. FAQ-O-Matic is a couple sleazy Perl scripts
  38. that allow people to submit FAQ answers to this database, so it can stay
  39. current, with just a tiny bit of work on any one person's part.
  40.  
  41. Yes, a bad guy could come along and wipe out all the FAQ entries. Please don't.
  42. But to give the good guys some measure of comfort, each submission is stored
  43. in an RCS file, so if someone does tamper, we can recover the database.
  44.  
  45. Guidelines for submissions:
  46.  
  47. 1. Please _try to be fairly unbiased in matters of opinion._ Mailing lists are
  48. the place to start flame wars (just kidding :v), but definitely not here.
  49.  
  50. 2. Please _use HTML only conservatively_ in your entries. Links are appropriate
  51. ,
  52. but put the URL in the plaintext also so it's useable on printed versions of
  53. the FAQ. Inline images pointing off this site are inappropriate, as is much
  54. fancy formatting. This is meant to be bandwidth-light and dumb-browser-friendly
  55. .
  56.  
  57. 3. If you feel there's a place for a _new category, or a reorganization of
  58. existing questions_, don't hesitate to mail me (molli@loria.fr).
  59. Category changes need to be done from my end.
  60.  
  61. 4. Please _leave an email address_ at the bottom of your submission so that oth
  62. ers
  63. can drop you a note.
  64.  
  65. 5. _If you only have a question_, not an answer, you should probably post
  66. it to a mailing list, not here. If there are frequently asked questions to whic
  67. h
  68. the answer is not forthcoming on mailing lists (or perhaps there's no
  69. useful answer yet other than "no one knows"), then it's appropriate to
  70. post here, in hopes that someone will see it and know the answer.
  71.  
  72. 6. Please refrain from crude or inconsiderate language. Please don't use
  73. this as a forum for advertising. However, mention of worthy commercial
  74. products is certainly appropriate (even if you sell said product). Just
  75. don't overdo it. :v)
  76.  
  77.           Last modified: _6/13/1997_
  78.           
  79.     2. Adding a new category ? 
  80.     
  81. just send me a mail at
  82. molli@loria.fr
  83.  
  84.           Last modified: _6/13/1997_
  85.           
  86.   Category: /Advanced_Topics_/
  87.   
  88.           " Advanced Topics "
  89.           
  90.   Category: /Advanced_Topics_/Branching_and_Mergin/
  91.   
  92.           " + Branching and Merging"
  93.           
  94.     1. What is a branch? 
  95.     
  96.           Unfortunately, the word "branch" is an overloaded technical
  97.           term. It is used in too many different ways in three
  98.           categories. It might help to understand some of the issues by
  99.           going through the categories:
  100.           
  101.      How Humans use the word "branch":
  102.           
  103.           Most development starts with everyone working on the same
  104.           software, making changes and heading toward a single goal. This
  105.           is called something like "Main Line Development". Note that
  106.           though many people do main line development on CVS's "Main
  107.           Branch", that is a choice, not a requirement.
  108.           
  109.           After a release or when one or more developers want to go off
  110.           and work on some project for a while, the Software Engineers
  111.           assigned to deal with large software issues generate a "Branch
  112.           in Development" to support the release or project. (Keep in
  113.           mind that a programmer is no more a Software Engineer than a
  114.           carpenter is a Civil Engineer.)
  115.           
  116.           Essentially, the word "branch" implies a way to allow
  117.           simultaneous development on the same files by multiple people.
  118.           
  119.           The above terms are human-oriented. They refer to actions that
  120.           people would like to take. They do *not* imply any particular
  121.           implementation or set of procedures. Branches in development
  122.           can be supported in many different ways.
  123.           
  124.      How CVS uses the word "branch":
  125.           
  126.           CVS uses the word "branch" in a number of ways. The two most
  127.           important are:
  128.           
  129.           - The vendor branch holds releases from (normally) an outside
  130.           software vendor. It is implemented using a specific RCS branch
  131.           (i.e. 1.1.1).
  132.           
  133.           - The "Main Branch", which normally holds your "Main Line
  134.           Development", but is defined as the collection of revisions you
  135.           get when you "checkout" something fresh, or when you use the
  136.           '-A' option to "update".
  137.           
  138.           Important Note: The CVS "Main Branch" is *not* the same as the
  139.           RCS concept with the same name. If you are using Vendor
  140.           Branches, files you have never changed are on three branches at
  141.           the same time:
  142.           
  143.           - The RCS 1.1.1 branch.
  144.           - The CVS Vendor branch.
  145.           - The CVS "Main Branch".
  146.           
  147.           The concepts overlap, but they are not equivalent.
  148.           
  149.           In referring to CVS, "branch" can be used in four other ways:
  150.           
  151.           - A CVS working directory satisfies the definition of "branch"
  152.           for a single developer -- you are on a private "virtual branch"
  153.           that does not appear in any of the RCS files or the CVS control
  154.           files.
  155.           
  156.           - The CVS "default branch" is the Repository source for the
  157.           collection of files in your working directory. It is *not* the
  158.           same as the RCS "default branch". Normally the CVS default
  159.           branch is the same as the CVS Main branch. If you use the "-r
  160.           <branch_tag>" option to the "checkout" command, you will record
  161.           a "sticky" tag that changes your default branch to the one you
  162.           checked out.
  163.           
  164.           - A "magic" branch can be a branch that hasn't happened yet. It
  165.           is implemented by a special tag you can check out that is not
  166.           attached to a real RCS branch. When you commit a file to a
  167.           magic branch, the branch becomes real (i.e. a physical RCS
  168.           branch).
  169.           
  170.           - And, of course, CVS uses "branch" to indicate a
  171.           human-oriented "branch in development".
  172.           
  173.      How RCS uses the word "branch":
  174.           
  175.           - The RCS "Main Branch" (Synonym: "The Trunk") contains a
  176.           series of two-part revision numbers separated by a single '.'
  177.           (e.g. 1.2). It is treated specially and is the initial default
  178.           branch. (The default default?)
  179.           
  180.           - The RCS "Default" branch starts out attached to the RCS "Main
  181.           Branch". For RCS purposes, it can be changed to point to any
  182.           branch. Within CVS, you *must*not* alter the RCS default
  183.           branch. It is used to support the CVS idea of a "Main Branch"
  184.           and it must either point to the RCS Main Branch, or the Vendor
  185.           Branch (1.1.1) if you haven't made any changes to the file
  186.           since you executed "import".
  187.           
  188.    Last modified: _6/13/1997_
  189.    
  190.     2. Why (or when) would I want to create a branch? 
  191.     
  192.    Remember that you can think of your working directory as a "branch for
  193.    one". You can consider yourself to be on a branch all the time because
  194.    you can work without interfering with others until your project (big
  195.    or small) is done.
  196.    
  197.    The four major situations when you should create a branch:
  198.    
  199.      When you expect to take a long time or make a large set of changes
  200.    that the merging process will be difficult. Both "long" and "large"
  201.    are defined in your own environment.
  202.    
  203.      When you want to be able to "commit" and "tag" your work repeatedly
  204.    without affecting others.
  205.    
  206.    If you ever think you need Source Control for your own work, but don't
  207.    want your changes to affect others, create a private branch. (Put your
  208.    username in the branch tag, to make it obvious that it is private.)
  209.    
  210.      When you need to share code among a group of developers, but not the
  211.    whole development organization working on the files.
  212.    
  213.    Rather than trying to share a working directory, you can move onto a
  214.    branch and share your work with others by "committing" your work onto
  215.    the branch. Developers not working on the branch won't see your work
  216.    unless they switch to your branch or explicitly merge your branch into
  217.    theirs.
  218.    
  219.      When you need to make minor changes to a released system.
  220.    
  221.    Normally a "release" is labeled by a branch tag, allowing later work
  222.    on the released files. If the release is labeled by a non-branch tag,
  223.    it is easy to add a branch tag to a previously tagged module with the
  224.    "rtag" command. If the release is not tagged, you made a mistake.
  225.    Recovery requires identifying all revisions involved in the release
  226.    and adding a tag to them.
  227.    
  228.    Last modified: _6/13/1997_
  229.    
  230.     3. How do I create and checkout a branch? 
  231.     
  232.    Suggested technique:
  233.    
  234.      Attach a non-branch tag to all the revisions you want to branch
  235.    from. (i.e. the branch point revisions)
  236.    
  237.      When you decide you really need a branch, attach a branch tag to the
  238.    same revisions marked by the non-branch tag.
  239.    
  240.      "Checkout" or "update" your working directory onto the branch.
  241.    
  242.      Suggested procedure when using modules:
  243.    
  244.      cvs rtag <branch_point_tag> module
  245.    
  246.      cvs rtag -b -r <branch_point_tag> <branch_tag> <module>
  247.    
  248.      cvs checkout -r <branch_tag> module
  249.    
  250.      Suggested procedure when using your working directory, which
  251.    contains the revisions of your working files you want to branch from:
  252.    
  253.      cvs tag <branch_point_tag>
  254.    
  255.      cvs rtag -b -r <branch_point_tag> <branch_tag> <module>
  256.    
  257.      cvs update -r <branch_tag>
  258.    
  259.    In each procedure above, Step #1 applies a non-branch tag to all the
  260.    branch point revisions in the module/directory. Though this is not
  261.    strictly necessary, if you don't add a non-branch tag to the revisions
  262.    you branch from, you won't be able to refer to the branch point in the
  263.    future.
  264.    
  265.    Between steps 1 & 2 you may commit changes. The result would be same
  266.    because "rtag -r <oldtag> <newtag>" applies <newtag> to the same
  267.    revision that <oldtag> is attached to. You can use this technique to
  268.    avoid attaching *any* branch tags until you need them.
  269.    
  270.    Step B.2 has two corollaries:
  271.    
  272.      If you plan to create the branch tag before committing anything in
  273.    your working directory, you can use "cvs tag -b <branch_tag>" instead
  274.    of the "rtag" command.
  275.    
  276.      The <module> can be a relative path to a directory from which your
  277.    working directory was checked out.
  278.    
  279.    If you have trouble figuring out what <module> to use (or pathname to
  280.    use in its place), you can aim it at whatever parent directories you
  281.    believe will cover all your work.
  282.    
  283.    If you are sure the <branch_tag> is not being used anywhere else, you
  284.    can even aim it at the whole Repository ($CVSROOT), if you have to. It
  285.    might take some extra time, but assuming that your <tag> is a unique
  286.    string and you don't use the '-f' option to "rtag -r", "rtag" will
  287.    only add a <tag> to files in which it actually *finds* the earlier
  288.    <tag>.
  289.    
  290.    In each procedure above, Step #3 may occur any time after step 2.
  291.    Unless you explicitly remove them with "tag -d", a <tag> is permanent.
  292.    
  293.    The <branch_tag> is an unusual creature. It labels a branch in a way
  294.    that allows you to "checkout" the branch, to "commit" files to the end
  295.    of the branch and to refer to the end of the branch. It does not label
  296.    the base of the branch (the branch point).
  297.    
  298.    There are two obvious ways to choose the <branch_point_tag> and
  299.    <branch_tag> names. But keep in mind that the <branch_tag> is typed by
  300.    any developer who wants to work on the branch -- you should make it
  301.    mean something to them.
  302.    
  303.    Style #1 presumes that the simple version string refers to a set of
  304.    designed, documented or promised features, not to a specific set of
  305.    files. In this case, you tag the branch with the generic Version
  306.    string and assume that whenever you refer to "Version", you want the
  307.    "latest" set of files associated with that Version, including all
  308.    patches. (You can substitute whatever you like for "bp_", as long as
  309.    your <branch_point_tag> is some modification of the <branch_tag>.)
  310.    
  311.                 <branch_point_tag>      Matching <branch_tag>
  312.  
  313.                 bp_V1_3                 V1_3
  314.                 bp_Release2-3-5         Release2-3-5
  315.                 bp_Production4_5        Release4_5
  316.  
  317.    Style #2 presumes that the simple version string refers to the
  318.    specific set of files used to construct the first release of
  319.    "version". In this case, you tag the branch-point revisions with the
  320.    generic Version string and assume that whenever you refer to this
  321.    Version, you want the original set of released revisions. To get the
  322.    latest patched revisions of the release, you refer to the branch tag
  323.    "latest_<branch_point_tag>". (You can substitute what ever you like
  324.    for "latest_", as long as your <branch_tag> is some modification of
  325.    the <branch_point_tag>.)
  326.    
  327.                 <branch_point_tag>      Matching <branch_tag>
  328.  
  329.                 V1_3                    latest_V1_3
  330.                 Release2-3-5            latest_Release2-3-5
  331.                 Release4_5              latest_Production4_5
  332.  
  333.    In both styles you can find out what you had to change since the
  334.    original release of this Version by typing:
  335.    
  336.             cvs diff -r <branch_point_tag> -r <branch_tag>
  337.  
  338.    For Style 1, this is:
  339.    
  340.             cvs diff -r bp_<branch_tag> -r <branch_tag>
  341.  
  342.    For Style 2, this is:
  343.    
  344.             cvs diff -r <branch_point_tag> -r latest_<branch_point_tag>
  345.  
  346.    Notes on "being on a branch":
  347.    
  348.    - "update -r <tag>" tells CVS to attach a "sticky tag" to working
  349.    directory (in ./CVS/Tag) and the checked-out files (on each line of
  350.    ./CVS/Entries).
  351.    
  352.    - A "sticky" <tag> (including a <branch_tag>) causes most CVS commands
  353.    to act as if "-r <tag>" were on the command line.
  354.    
  355.    - A "sticky" <branch_tag> indicates that the working directory (and
  356.    working files) are "on the branch".
  357.    
  358.    Last modified: _6/13/1997_
  359.    
  360.     4. Once created, how do I manage a branch? 
  361.     
  362.    The most important thing you should know about managing a branch is
  363.    that the creation of a branch is not a lightweight act. When you
  364.    create a branch, you must also create a set of procedures to keep
  365.    track of it.
  366.    
  367.    Specifically, you must:
  368.    
  369.    - Remember that the branch exists. (This is non-trivial if you create
  370.    a lot of them.)
  371.    
  372.    - Plan when to merge it back into the main line of development.
  373.    
  374.    - Schedule the order that multiple branch merges are to be done.
  375.    
  376.    - If you ever intend to merge branches into each other, instead of
  377.    limiting merges of branch work back into the "main line", you must
  378.    keep careful track of which parts of which branches have merged into
  379.    which other branches.
  380.    
  381.    The simplest way to deal with branches is to limit their number,
  382.    "collapse" them back into the main line as quickly as is reasonable
  383.    and forget them. If a group wants to continue working, tell them to
  384.    create another branch off the fully merged main line.
  385.    
  386.    Remember that CVS is just a tool. Over time, it will probably handle
  387.    branching better, requiring less careful attendance. But no matter how
  388.    good it becomes, the whole idea of "branching" is a complicated
  389.    management problem. Don't take it lightly.
  390.    
  391.    Last modified: _6/13/1997_
  392.    
  393.     5. Are there any extra issues in managing multiple branches? 
  394.     
  395.    If you plan to split from the "main line" and merge back after a time,
  396.    the only problem will be scheduling the order of branch merges. As
  397.    each branch is merged, the main line must be rebuilt and tested.
  398.    Merging multiple branches (i.e. "lines of development") before
  399.    building and testing creates more problems than you are ready for.
  400.    
  401.    If you plan to collapse some branches into others, then move the
  402.    combined branches back into the main line, you have to be careful with
  403.    the revisions and tags you hand to your "update -j" command, but it
  404.    shouldn't be much trouble.
  405.    
  406.    If you plan to allow every branch to incrementally take the work done
  407.    on other branches, you are creating an almost insurmountable
  408.    bookkeeping problem. Every developer will say "Hey, I can handle
  409.    taking just this little bit," but for the system as a whole it is
  410.    disaster. Try it once and see. If you are forced into this situation,
  411.    you will need to keep track of the beginning and end points of every
  412.    merge ever done. Good Luck.
  413.    
  414.    Last modified: _6/13/1997_
  415.    
  416.     6. How do I merge a whole branch back into the trunk? 
  417.     
  418.    If you don't have a working directory, you can checkout and merge in
  419.    one command:
  420.    
  421.                 cvs checkout -j <branch_tag> <module>
  422.                 cd <module>
  423.  
  424.    If you already have a working directory:
  425.    
  426.                 cd <working_directory>
  427.                 cvs update      <== Optional, to bring it up to date.
  428.                 cvs update -j <branch_tag>
  429.  
  430.    CVS will print lines beginning with
  431.    
  432.    'U' for files that you hadn't changed, but the branch did.
  433.    
  434.    'M' for files that you changed and the branch didn't
  435.                 *and* for files that you both changed that were merged
  436.                 without overlaps.  (This overload is unfortunate.)
  437.  
  438.    'C' for files that you both changed in a way that conflicts
  439.                 with each other.
  440.  
  441.    You need to go edit all the 'C' files and clean up the conflicts. Then
  442.    you must commit them.
  443.    
  444.    Last modified: _6/13/1997_
  445.    
  446.     7. How do I merge changes from the trunk into my branch or between
  447.     branches? 
  448.     
  449.    The idea is similar to the above, but since CVS doesn't treat the main
  450.    branch like other branches, you'll have to be more careful. There are
  451.    5 different ways to look at the problem.
  452.    
  453.      The way to merge *all* changes made on the trunk into a working
  454.    branch is to move to the branch you want via "checkout -r" or "update
  455.    -r":
  456.    
  457.                 cvs update -r <branch_tag> {optional files}
  458.  
  459.    Then merge the changes from the trunk into your working branch using
  460.    the pseudo-tag named "HEAD":
  461.    
  462.                 cvs up -j HEAD {optional files}
  463.  
  464.    You will get everything from the branch point of the branch named
  465.    <branch_tag> up to the HEAD of the main branch. This is still kind of
  466.    strange. If the file is on a branch, HEAD should be the latest thing
  467.    on the branch, not the HEAD of MAIN. But that's not the way CVS
  468.    (currently) works.
  469.    
  470.    If you run "cvs up -j HEAD" again after adding more revisions to the
  471.    trunk, you may get overlaps for the text you have already merged. It
  472.    depends on your version of your RCS "merge" command (actually the "co
  473.    -j" option, which depends on the version of "diff3" you configured RCS
  474.    to use).
  475.    
  476.      You can merge the difference between any two <tags> using two "-j"
  477.    options on "update" or "checkout".
  478.    
  479.    Identify the two tags on the branch you want to merge from.
  480.    
  481.                 cvs update -j <tag1> -j <tag2> {optional files}
  482.  
  483.    This step assumes you were careful about tagging milestones. You can
  484.    use this technique for any two <tags> on the same branch, even the
  485.    trunk. It is also possible to use tags on different branches, but
  486.    you'll have to ponder the meaning of the difference between those two
  487.    tags.
  488.    
  489.    In place of one of the <tags>, you can use a <branch_tag> to refer to
  490.    the latest revision on that branch. See 4C.11 and 4C.3 for info on
  491.    branch points.
  492.    
  493.    Merges can also be performed by handing RCS revisions to the '-j'
  494.    options, but since revision numbers aren't the same in all files,
  495.    merging by number is normally limited to one file. Sets of files with
  496.    the exact same trees of branches and revision numbers would work too,
  497.    but that's a rare situation.
  498.    
  499.      To "take" revisions from other branches instead of merging them, see
  500.    4C.19 for an idea.
  501.    
  502.      A way to gain the effect of merging the main to the branch is to
  503.    merge the branch into the main using the normal
  504.    
  505.                 cvs update -A {optional files}
  506.                 cvs update -j <branch_tag> {optional files}
  507.                 cvs commit
  508.                 cvs tag -F  -b <same_branch_tag> {optional files}
  509.  
  510.    See part B of 4D.5
  511.    
  512.      Other oddities.
  513.    
  514.    This also works, but is probably not officially supported:
  515.    
  516.                    cvs update -j N {optional files}
  517.  
  518.    where N is a number. This will merge all the changes from the branch
  519.    point up to the highest revision on the main branch starting with N.
  520.    For example, if your highest trunk revision is 1.52, you can use this
  521.    to grab revisions from the trunk:
  522.    
  523.                    cvs update -j 1 {optional files}
  524.  
  525.    Another example: Say you have a branch point at rev 1.2 for a branch
  526.    named "BR1" and trunk revisions 1.3, 1.4, 2.1, 2.2, 2.3, 3.1, 3.2.
  527.    Then:
  528.    
  529.                    cvs update -j 1 {optional files}
  530.  
  531.    will merge the changes from 1.2 to 1.4
  532.    
  533.                    cvs update -j 2 {optional files}
  534.  
  535.    will merge the changes from 1.2 to 2.3
  536.    
  537.                    cvs update -j 3 {optional files}
  538.  
  539.    will merge the changes from 1.2 to 3.2, which in this example, is
  540.    equivalent to the use of "-j HEAD" in part A above.
  541.    
  542.    The intuitive (at least to me):
  543.    
  544.                    cvs up -j MAIN (or TRUNK) {optional files}
  545.  
  546.    doesn't work. If the trunk (i.e. "main branch") had an implicit branch
  547.    named "MAIN", you could use:
  548.    
  549.                    cvs up -j MAIN:10/26 -j MAIN:now {optional files}
  550.  
  551.    and refer to date-stamped revisions on the trunk using the
  552.    <branch_tag>:<date> support that works on other branches.
  553.    
  554.    You might also think you could place an explicit tag on branch 1 (or
  555.    higher) (e.g. MAINHACK:1) and use it in place of the implicit "MAIN",
  556.    but I haven't found the right combination.
  557.    
  558.    [[If you find working techniques, I'll add them here.]]
  559.    
  560.    Last modified: _6/13/1997_
  561.    
  562.     8. How do I merge onto the Main Branch a file that exists only on a branch
  563.     other than the Main Branch? (i.e. it is in the Attic) 
  564.     
  565.    For how such a file can exist, see 3A.2 and 3A.3.
  566.    
  567.    For how to avoid creating such a file, see 3A.5.
  568.    
  569.    Though you might think that the "update -j" command could perform the
  570.    "merge" of a file from the side branch to the Main Branch, it isn't
  571.    (yet) smart enough. Unfortunately, there is no single CVS command to
  572.    do this -- it takes three steps:
  573.    
  574.      To move something onto the Main Branch from the Attic, you have to
  575.    physically move the file from the Attic to the main Repository
  576.    directory associated with your working directory.
  577.    
  578.    It is exactly like resurrecting a removed file. See 3L.4
  579.    
  580.    I use something like this: (csh-like syntax)
  581.    
  582.    set repos = `cat ./CVS/Repository` mv $repos/Attic/filename,v
  583.    $repos/filename,v
  584.    
  585.    (If you use relative paths in your Repository files, that first line
  586.    becomes: set repos = $CVSROOT/`cat ./CVS/Repository`)
  587.    
  588.      Now that the file is physically in the right place within the
  589.    Repository, "update -A" will make it appear in your working directory
  590.    on the Main Branch. Do that now.
  591.    
  592.      You now have a choice. The act of physically moving the file has
  593.    fused together the <branch_tag> branch and the Main Branch for this
  594.    file. You can continue that way, making changes along the RCS Main
  595.    Branch which CVS will (for this type of file only) treat as both the
  596.    Main Branch and the <branch_tag> branch.
  597.    
  598.    The other choice, which I would suggest, is to re-tag the file with
  599.    <branch_tag>, restoring a normal-looking magic branch tag to the file:
  600.    
  601.                 cvs tag -F -b <branch_tag> <file>
  602.  
  603.    After you have done the above, you can run "update -A" or "update -r
  604.    <branch_tag>" to resume whatever you were doing before you started
  605.    this procedure.
  606.    
  607.    Caveat: The final result is a file whose revision tree doesn't look
  608.    like it was ever on any branch but the Main Branch until the above
  609.    "tag -F -b" command was executed. CVS and RCS have no way of saving
  610.    the history of the actions you have just performed.
  611.    
  612.    Last modified: _6/13/1997_
  613.    
  614.     9. How do I know what branch I'm (working) on? 
  615.     
  616.    Type:
  617.                 cvs status
  618.  
  619.    and look at the "Sticky Tag" field for each file. If:
  620.    
  621.      The *same* tag is on *every* file in your working tree, *and*
  622.    
  623.      That tag matches the contents of the ./CVS/Tag file, *and*
  624.    
  625.      That tag is a branch tag,
  626.    
  627.    then you know what branch you are working on. You can get sticky Tag
  628.    information directly from the ./CVS/Entries file instead of "cvs
  629.    status".
  630.    
  631.    If all the sticky Tags don't agree, then your directory is temporarily
  632.    inconsistent. This is a feature allowing you to make changes (or
  633.    perform merges) to individual files on multiple branches without
  634.    checking out the whole directory.
  635.    
  636.    The sticky Tag on each file in the ./CVS/Entries file (as displayed by
  637.    the "status" command) indicates what branch the working file is on.
  638.    New files are added to the Tag stored in ./CVS/Tag.
  639.    
  640.    To force your entire working directory onto the same branch, type:
  641.    
  642.                 cvs update -r <branch_tag>
  643.  
  644.    Last modified: _6/13/1997_
  645.    
  646.     10. Do I really have to know the name of the branch I'm working on? 
  647.     
  648.    If a developer can't be relied on to know what branch of development
  649.    to work on, then either the developer's manager isn't planning
  650.    branches properly or the developer has serious problems.
  651.    
  652.    I have found that one of the hardest concepts to get across to
  653.    developers (and some managers) is that "a branch in development" (as
  654.    opposed to the use of RCS branches to support some other scheme) is a
  655.    heavyweight act. Every time you create a real branch in development,
  656.    you must spawn a set of managerial procedures and a schedule by which
  657.    you plan to merge each branch into each other branch. Unless you plan
  658.    to keep it simple and collapse (by merging and forgetting) branches
  659.    quickly, they are not to be created lightly.
  660.    
  661.    In other words, if you don't regularly attend group meetings in which
  662.    the branch to be worked on is a major topic of discussion, then the
  663.    group is not managing branches properly.
  664.    
  665.    We created a couple major branches a few months ago and even the
  666.    customer service people refer to the "XYZ branch" as a shorthand for
  667.    "continuing development on the XYZ project".
  668.    
  669.    Last modified: _6/13/1997_
  670.    
  671.     11. How do I refer to the revision where I branched so I can see what
  672.     changed since the Branch Point on another branch? 
  673.     
  674.    Given the current <branch_tag> format, there is no direct way to refer
  675.    to the branch point, which is more useful in many ways than referring
  676.    to the branch, which always refers to the latest revision on the
  677.    branch.
  678.    
  679.    When CVS adds a branch tag, it attaches an RCS symbol to a
  680.    non-existent revision number containing the revision number of the
  681.    branch point as a prefix. (See Section 3O, on the "tag" command.) RCS
  682.    can't use the CVS magic branch tag and many of the CVS commands can't
  683.    refer to it.
  684.    
  685.    To be certain of your ability to refer to a branch point, you must
  686.    create a "branch point" tag at the same time as the Branch tag. See
  687.    4C.3.
  688.    
  689.    Last modified: _6/13/1997_
  690.    
  691.     12. Why didn't the command "cvs admin -bBRANCH1 *" create a branch? 
  692.     
  693.    Because your command creates an RCS branch, not a CVS branch. See the
  694.    above discussion on branches. RCS branches are used to support CVS
  695.    branches, but they are not the same. You can't act as if you have
  696.    direct control over the RCS files.
  697.    
  698.    The "admin" command was placed there as a convenience to allow you to
  699.    execute raw "rcs" commands on the Repository, taking advantage of
  700.    CVS's ability to find the files in the Repository.
  701.    
  702.    But you have to remember that you are using RCS commands on a CVS
  703.    Repository, which is not generally safe unless you know exactly what
  704.    CVS depends on.
  705.    
  706.    For one thing, CVS insists on control of the default branch. It is set
  707.    either to the Main branch or the Vendor branch depending on whether
  708.    you have changed the Vendor's code. If you change the default branch,
  709.    you are monkeying with the internals and you will get unexpected
  710.    results.
  711.    
  712.    To set your "default CVS branch" to BRANCH1, you must use "checkout"
  713.    or "update" with the "-r BRANCH1" option. Then you have changed CVS's
  714.    idea of your "default branch", which has little to do with RCS's
  715.    default branch.
  716.    
  717.    Last modified: _6/13/1997_
  718.    
  719.     13. Is it possible to set the "default CVS branch" for everyone? 
  720.     
  721.    No. It doesn't work that way.
  722.    
  723.    When using CVS, all administrative information (such as what branch
  724.    you checked out) is stored in CVS sub-directories, local to the user.
  725.    There is no global state, other than the description and logging files
  726.    in the $CVSROOT/CVSROOT directory.
  727.    
  728.    You tell "checkout" or "update" what branch you want to check out via
  729.    the "-r <tag>" option. The default is CVS's "Main Branch".
  730.    
  731.    I don't see a problem in *designing* a new way to indicate what branch
  732.    you get by default, instead of the main one, but that's not how it
  733.    currently works.
  734.    
  735.    Last modified: _6/13/1997_
  736.    
  737.     14. How do I perform a large merge? 
  738.     
  739.    Large merges require a bit more planning to be able to track what has
  740.    happened in the inevitable cases where something goes wrong. No tool
  741.    can force a "merge" to make perfect sense.
  742.    
  743.    Though you can handle the details in many different ways, the two ends
  744.    of the spectrum of merge techniques are: gonzo and paranoid.
  745.    
  746.      The gonzo method assumes that you know everything about your sources
  747.    so that recovery from failures is "just a matter of typing." You
  748.    created the branch this way:
  749.    
  750.                 cvs checkout <module>
  751.                 cd <module>
  752.                 cvs tag -b <branch_tag>
  753.                 cvs update -r <branch_tag>
  754.                 >>> Edit away.
  755.                 cvs commit              <<== Onto branch
  756.  
  757.    Now you want to merge your branch back into the Main branch, you are
  758.    certain you can make it work, or at least detect all the failures, so
  759.    you dive in and hack away: (For simplicity, we will assume you are
  760.    collapsing (i.e. merging and forgetting) a side-branch into the Main
  761.    branch from your single working directory.)
  762.    
  763.                 cvs update -A
  764.                 cvs update -j <branch_tag>
  765.                 >>> Edit the 'C' files and remove the overlaps.
  766.                 >>> Edit some more to make it all compile and work.
  767.                 cvs commit
  768.  
  769.    Looks simple. For more details on the output from the "update -j"
  770.    command, see 3P.2 and 4C.6.
  771.    
  772.    Note: You could also checkout a whole new working directory and
  773.                  perform the merge at the same time by replacing the two
  774.                  update commands with these two commands:
  775.  
  776.                         cvs checkout -j <branch_tag> <module>
  777.                         cd <module>
  778.  
  779.      The paranoid way is more difficult, but it can catch all sorts of
  780.    problems. You created the branch this way:
  781.    
  782.                 cvs checkout <module>
  783.                 cd <module>
  784.                 cvs tag <branch_point_tag>
  785.                 cvs tag -b <branch_tag>
  786.                 cvs update -r <branch_tag>
  787.                 >>> Edit away.
  788.                 cvs commit              <<== Onto branch
  789.  
  790.    The extra tag command places a non-branch tag on the Branch Point, an
  791.    act that makes it easier to do "diffs" later. Now we decide to perform
  792.    the merge:
  793.    
  794.                 cvs tag <latest_on_branch_tag>
  795.                 cvs update -A
  796.            *1*  cvs diff -r <branch_point_tag> -r <latest_on_branch_tag>
  797.                 >>> *1* shows all the changes on the branch.
  798.            *2*  cvs diff -r <branch_point_tag> -r HEAD
  799.                 >>> *2* shows the changes on the trunk since branching.
  800.                 cvs tag <premerge_tag>
  801.                 cvs update -j <branch_tag>
  802.                 >>> Edit the 'C' files and remove the overlaps.
  803.            *3*  cvs diff
  804.                 >>> Verify that *3* matches *1*, except for line numbers.
  805.                 cvs commit
  806.                 cvs tag <just_merge_changes_tag>
  807.                 >>> Edit some more to make it all compile and work.
  808.                 cvs commit
  809.                 cvs tag <after_merge_cleanup_tag>
  810.  
  811.    The reason *3* and *1* match so closely is that they are the
  812.    differences between two pairs of starting points and ending points
  813.    after the same data was inserted. If they are significantly different,
  814.    you will want to figure out why.
  815.    
  816.    NOTE: You will have to tell everyone to stay the hell out of the
  817.    Repository while you do this. If they commit something while you are
  818.    in the middle of a merge, your job will be much more difficult. If
  819.    they "update" at the wrong time, their work will be randomized until
  820.    you finish. It's better to call a halt.
  821.    
  822.    See 3H.13 for some more information about dealing with merges after
  823.    import. The last part of the procedure is applicable to any large
  824.    merge.
  825.    
  826.    Last modified: _6/13/1997_
  827.    
  828.     15. Is a Vendor merge any different from a branch merge? 
  829.     
  830.    No. In most ways, a Vendor branch is exactly the same as any other
  831.    branch. In a Vendor merge, the data is append to the branch by the
  832.    "import" command, rather than by hand-editing, but the merge process
  833.    is the same.
  834.    
  835.    See the "import" command in section 3H.
  836.    
  837.    Last modified: _6/13/1997_
  838.    
  839.     16. How do I go back to a previous version of the code on a branch? 
  840.     
  841.  
  842.  
  843.  
  844.         You can avoid digging into RCS revision numbers (executing "update
  845.         -r (rev)" on each file) by trying one of these:
  846.  
  847. Use non-branch tags as you normally would.  Non-branch tags
  848.            attach to specific revisions, so a "tag (tag)" command would
  849.            mark the revisions you have in your working directory, which
  850.            are on your branch.  If you need to retrieve them, use "update
  851.            -r (non-branch-tag)"
  852.  
  853.            Doing this overrides the sticky (branch-tag) attached to your
  854.            working directory with a non-branch tag, which means you won't
  855.            be able to commit until you again move forward to the end of
  856.            the branch with "update -r (branch-tag)".
  857.  
  858. Use the "update -r (branch-tag):(date)" trick.
  859.  
  860.            This is almost like using the '-D' option, but it looks for
  861.            revisions extant on (date) only along the given branch.
  862.  
  863.            As in #1, you can't commit to this kind of working area,
  864.            because it has a sticky date referring to revisions in the
  865.            middle of a branch.
  866.  
  867. [comment from the audience:  You are dreaming..
  868. this does not work.. try it, you get
  869. No such tag: "MYTAG:May 1"
  870. or similar. I wish it did because I need it. julian@whistle.com]
  871.  
  872.  
  873. You can branch a branch.
  874.  
  875.            If you add a branch tag to file in a working directory that was
  876.            checked out on a branch, you will branch the branch.  This
  877.            works just fine, though you'll have to play some games to merge
  878.            everything back together again.  You'll also create 6-part
  879.            revision numbers.  (They'll be 8-part revision numbers if you
  880.            branch a branch that started out with some unmodified files on
  881.            the Vendor branch.  Think about it.  How does revision
  882.            1.2.4.2.4.2.2.1 grab you?)
  883.  
  884.  
  885. (fixed formatting, kingdon@cyclic.com)
  886.  
  887.    Last modified: _9/8/1997_
  888.    
  889.     17. Once I've found the files I want, how do I start changing them? I keep
  890.     getting warnings about sticky tags. 
  891.     
  892.    What you probably did was type "cvs update -r <tag>" where <tag> is a
  893.    non-branch tag. "update" created a sticky tag for a specific revision,
  894.    not a branch. To start working right there, you have to create a
  895.    branch to work on.
  896.    
  897.    You have two choices.
  898.    
  899.      You can do it in place and keep working:
  900.    
  901.            cvs tag -b <branch_tag>      <<== To tag the current files.
  902.            cvs update -r <branch_tab>   <<== To move onto the branch.
  903.  
  904.      You can do it "externally" and create a new working directory:
  905.    
  906.            cvs rtag -b -r <tag> <branch_tag> <module>
  907.            cvs checkout -r <branch_tag> <module>
  908.  
  909.    <module> can be a relative path within the Repository.
  910.    
  911.    <tag> in the above is the non-branch tag you placed earlier
  912.                  that caused the error in your question.  Be warned that
  913.                  if <tag> is not set on all the files (or all the right
  914.                  revisions) you won't get exactly what you wanted.
  915.  
  916.    Last modified: _6/13/1997_
  917.    
  918.     18. Why do I get the latest files on the branch when I tried to "update -r
  919.     <tag>"? 
  920.     
  921.    If "update -r <tag>" always retrieves the latest files on a branch,
  922.    then <tag> is really a <branch_tag>. A branch tag is supposed to be
  923.    used to grab a branch to work on. Since you can't modify a file in the
  924.    middle of a branch, checking out a <branch_tag> will give you the
  925.    latest revision on the branch.
  926.    
  927.    If you want to "checkout" a specific collection of revisions, you must
  928.    use a "non-branch" tag. See the first part of 4C.16.
  929.    
  930.    Last modified: _6/13/1997_
  931.    
  932.     19. How can I avoid a merge? I just want to move the latest revision on my
  933.     working branch directly onto the trunk. 
  934.     
  935.    There is no direct way to do this using CVS, though the technique is
  936.    not difficult using shell commands. Here's one way:
  937.    
  938.      Move your working directory to the Main Branch.
  939.    
  940.                 cvs update -A
  941.  
  942.      Use "update -p" to grab the latest revision on the branch and write
  943.    it over your working files. Make sure you don't have an modified files
  944.    -- you will lose them. The following is in "csh" syntax. Change the
  945.    wildcard to grab the files you want
  946.    
  947.    foreach i (Makefile *.cc *.hh)
  948.                     cvs update -p -r <branch_tag> $i > $i
  949.                 end
  950.  
  951.      Commit all the working files onto the Main Branch.
  952.    
  953.                 cvs commit -m 'Moved branch <branch_tag> onto MAIN'
  954.  
  955.    You should experiment with the above before blasting everything.
  956.    
  957.    Last modified: _6/13/1997_
  958.    
  959.     20. How to I avoid merge collisions in the RCS $\Log$ data? 
  960.     
  961.    In short, you can't. The RCS $\Log$ keyword is handled differently
  962.    from all other RCS keywords.
  963.    
  964.    On the info-cvs mailing list, there is a periodic discussion that goes
  965.    something like this:
  966.    
  967.    Question: How do I deal with $\Log$? Answer1: You can't do much with
  968.    it. Here's how it works. . . Answer2: I've found a limited way to use
  969.    it. . . Answer3: Get rid of it. $\Log$ is an abomination.
  970.    
  971.    I tend to lean toward answer #3. There are only two sets of people who
  972.    would ever have access to logs stored within sources files, developers
  973.    and source customers.
  974.    
  975.    For developers:
  976.    
  977.      Log entries within sources files are notoriously incomplete, rushed,
  978.    poorly phrased and in many cases incorrect, making them useless for
  979.    debugging or file maintenance. I remember a maxim from "Software
  980.    Tools" (I believe): "Read the code, not the comments." No managerial
  981.    order or plan for programmer discipline will affect this in the real
  982.    world.
  983.    
  984.      Log entries are usually in an unreadable mixture of styles. Many log
  985.    entries are just plain meaningless. Some are foolish. Some are even
  986.    insulting. Examples:
  987.    
  988.    "Corrected spelling of misspelling." "Bug fix." "Reversed stupid
  989.    change in previous revisions." "If Joe could do his job, this would
  990.    already have worked."
  991.    
  992.      Log entries are not managed well by the tools. Any merge can cause
  993.    conflicts in the $\Log$ data. Branch merges produce incomplete logs.
  994.    They can be edited into chaos and they are not regenerated. They waste
  995.    space duplicating information available to the developer with a single
  996.    command.
  997.    
  998.      Even if correct when originally entered, as changes are made to the
  999.    file, log entries become false over time. Humans are not good at
  1000.    reading down through a list and remembering only the last change
  1001.    affecting something. Over time *most* of the log is wrong.
  1002.    
  1003.      Even if still correct, the log data is almost useless to developers
  1004.    without the code diffs. If you can get code diffs, you can display the
  1005.    log.
  1006.    
  1007.    For source customers the problem is even worse. The last thing you
  1008.    want to show customers is a hodge-podge of tiny comments about large
  1009.    changes followed by a series of emergency fixes before delivery. If
  1010.    you distribute sources, then you should provide documentation, or
  1011.    changelogs reviewed by people who won't let comments like "Fixed for
  1012.    stupid customer." out the door.
  1013.    
  1014.    Conclusion: Though some people would prefer to see in this FAQ
  1015.    techniques for making the $\Log$ entries the best they can be, I
  1016.    believe them to be a lost cause. My suggestion is to hunt down, root
  1017.    out and destroy all occurrences of $\Log$ and the unusable data
  1018.    attached to it wherever you may find it.
  1019.    
  1020.    Last modified: _6/13/1997_
  1021.    
  1022.     21. Why should I trust automatic merges? 
  1023.     
  1024.    Some developers have the feeling that three-way merging doesn't work.
  1025.    They fear and distrust the way the "update" command automatically
  1026.    merges committed changes from the Repository into the working file.
  1027.    
  1028.    Experience has shown that most merges are utterly painless and most of
  1029.    the rest are easily resolved. The few conflicts that cause headaches
  1030.    are nearly all due to poor communication between developers, a problem
  1031.    no source control system can obviate.
  1032.    
  1033.    Some developers were troubled in the past by flaky Unix software. I
  1034.    can't say that everything is perfect, but the tools CVS depends on
  1035.    (RCS and diff, mainly) are fairly solid nowadays. They work.
  1036.    
  1037.    Since it does seem to work for most of us, the algorithm is unlikely
  1038.    to change soon. Why not test it on a couple trouble spots and if it
  1039.    works for you, use it for a while? Then you can make an informed
  1040.    decision.
  1041.    
  1042.    Last modified: _6/13/1997_
  1043.    
  1044.     22. How does CVS decide if it can safely perform a merge? 
  1045.     
  1046.    CVS can merge any text file, possibly discovering a conflict and
  1047.    leaving overlaps for you to edit. Editing the conflict markers out of
  1048.    the file is a moment's work, but resolving the conflict could take an
  1049.    arbitrary amount of time. CVS works to determine if it *should* merge,
  1050.    not if it *can*.
  1051.    
  1052.    See 2B.6 for how the merge proceeds.
  1053.    
  1054.    Last modified: _6/13/1997_
  1055.    
  1056.     23. After resolving merge conflicts in a file, what if I want to keep my
  1057.     previous version, and not take any of the branch changes? 
  1058.     
  1059.    If you want to retain your previous version, a version on the MAIN
  1060.    branch greater than 1.1 (one you committed there), just throw the
  1061.    merged file away and "cvs update" the file.
  1062.    
  1063.    You don't need to commit something to remember it. The tags you place
  1064.    before and after the merge should give all the handles you need to
  1065.    find various versions. You don't have to create a new version of the
  1066.    file.
  1067.    
  1068.    If you want to retain the previous Vendor revision, you can grab a
  1069.    copy of it using "cvs update -p" and commit it or use the technique
  1070.    described in 3B.3 to revert back to the Vendor branch.
  1071.    
  1072.    Last modified: _6/13/1997_
  1073.    
  1074.   Category: /Advanced_Topics_/Engineering/
  1075.   
  1076.    " + Engineering"
  1077.    
  1078.     1. Where can I find out about Software Engineering? 
  1079.     
  1080.    A couple different people suggested this book:
  1081.    
  1082.    Software Configuration Management: Coordination for Team Productivity;
  1083.    Wayne A. Babich; Addison Wesley; 1986; ISBN 0-201-10161-0
  1084.    
  1085.    A number of others suggested Appendix B of the book "Decline and Fall
  1086.    of the American Programmer" by Ed Yourdon, called "The Programmer's
  1087.    Bookshelf". It list 87 books you are expected to have read. Since they
  1088.    publish many of the books, Prentice-Hall distributes this list as
  1089.    "Prentice Hall Professional Technical reference PTR-125-AA3.
  1090.    
  1091.    One interesting item from the Yourdon book: The total number of
  1092.    professional computer books sold is less than the number of
  1093.    programmers currently in the United States. It wasn't clear from the
  1094.    book whether this meant "per year" or not, but it is still
  1095.    frightening.
  1096.    
  1097.    Last modified: _6/13/1997_
  1098.    
  1099.     2. How do I flexibly arrange the modules file to describe my sources? 
  1100.     
  1101.    An equivalent question might be, "How do I structure my sources?" This
  1102.    can be a difficult question especially in the areas that are more
  1103.    political than technical.
  1104.    
  1105.    Generally you want to think about which pieces of your system need to
  1106.    be checked out together, built as one system or tagged as a consistent
  1107.    whole. You should certainly create module names that correspond to
  1108.    complete, buildable collections that you would tag and release as one
  1109.    "product". It is also convenient to create module names for small
  1110.    sections of the Repository containing files that will all be worked on
  1111.    at the same time by the same person or group.
  1112.    
  1113.    Once you have defined the structure of your work, you can usually see
  1114.    how to lay it out in a Repository. After that the modules file is
  1115.    easy. You set up module names and aliases to match what you need to
  1116.    check out by name. If you like relative directories, it is possible,
  1117.    but not recommended, to work completely without a modules file. See
  1118.    1D.11 and 2C.7 for some info about the modules file.
  1119.    
  1120.    Here are a few types of modules. You should experiment to see what
  1121.    kind of structure each of these produces. They all have different
  1122.    uses.
  1123.    
  1124.      Connected projects in one group with two separate helper
  1125.    directories. The helper directories can contain build tools, header
  1126.    files, libraries, or whatever you like.
  1127.    
  1128.    These are all aliases that checkout relative pathnames. The equivalent
  1129.    results could be produced by placing the selected relative pathnames
  1130.    on the "cvs checkout" command line.
  1131.    
  1132.            pr1  -a P1 HELPERS
  1133.            pr2  -a P2 HELPERS
  1134.            pr3  -a P3 HELPERS
  1135.            pr12 -a P1 P2 HELPERS
  1136.            pr13 -a P1 P3 HELPERS
  1137.            pr23 -a P2 P3 HELPERS
  1138.  
  1139.            P1           -a group1/proj1
  1140.            P2           -a group1/proj2
  1141.            P3           -a group1/proj3
  1142.            HELPERS      -a group1/helper1 group1/helper2 MAKEFILE
  1143.            MAKEFILE     -a group1/Makefile
  1144.  
  1145.    Actual Repository directory structure: (from $CVSROOT down)
  1146.    
  1147.    group1/ Makefile The top level Makefile. helper1/ helper2/ Helper
  1148.    files and dirs proj1/ Files and dirs proj2/ Files and dirs proj3/
  1149.    Files and dirs
  1150.    
  1151.    "checkout group1" produces a duplicate of the above. "checkout projX"
  1152.    produces all but "projY" and "projZ". "checkout projXY" produces all
  1153.    but "projZ".
  1154.    
  1155.      Here is the exact same set of module names describing the same
  1156.    Repository layout using module names (and aliases containing module
  1157.    names) instead of merely aliases for relative pathnames.
  1158.    
  1159.    There is one difference in the result. The name of the top level
  1160.    directory in the checked out working tree will match the "module" name
  1161.    (e.g. pr1) instead of always being "group1" as it was in the first
  1162.    example above.
  1163.    
  1164.            pr1  group1 proj1 &HELPERS
  1165.            pr2  group1 proj2 &HELPERS
  1166.            pr3  group1 proj3 &HELPERS
  1167.            pr12 group1 proj1 proj2 &HELPERS
  1168.            pr13 group1 proj1 proj3 &HELPERS
  1169.            pr23 group1 proj2 proj3 &HELPERS
  1170.  
  1171.            HELPERS      -a helper1 helper2 group1-Makefile
  1172.            helper1      group1/helper1
  1173.            helper2      group1/helper2
  1174.            group1-Makefile -d . group1 Makefile
  1175.  
  1176.    The above line (with the -d in it) says that when the module named
  1177.    "group1-Makefile" is checked out, the file named Makefile file will be
  1178.    found in a directory named $CVSROOT/group1 and will be checked out
  1179.    into a directory named '.', which obviously already exists.
  1180.    
  1181.    The & references say to interpret those pathnames relative to the
  1182.    directory where the whole module is stored. For the "pr1" module, that
  1183.    directory is "group1", so the &HELPERS reference winds up placing
  1184.    Makefile in '.' relative to "group1".
  1185.    
  1186.      A short one containing the basic "module" actions:
  1187.    
  1188.            m1           head/path file1 dir2 file3 dir4 file5
  1189.  
  1190.    When checked out, a directory named "m1" appears in your current
  1191.    directory. Elements named file1, dir2, file3, dir4, and file5 appear
  1192.    in it. They were originally taken as relative paths from
  1193.    $CVSROOT/head/path.
  1194.    
  1195.      Here's another way to construct a working directory out of pieces of
  1196.    the Repository:
  1197.    
  1198.                 projX   projX Makefile &projX_inc &projX_src &projX_doc
  1199.  
  1200.                 # The first line selects a single file within projX, plus
  1201.                 # the contents of three other modules.  Those three other
  1202.                 # modules rename their directories.
  1203.  
  1204.    projX_inc -d include projX/inc projX_src -d source projX/src projX_doc
  1205.    -d documentation projX/doc
  1206.    
  1207.      A Unix tree. This is similar to what CVS was developed for and the
  1208.    way I have used it for years.
  1209.    
  1210.                 # Top level
  1211.                 unix            unix
  1212.                 u_bin           unix/bin
  1213.                 u_etc           unix/etc
  1214.                 u_man           unix/man
  1215.                 usr-bin         unix/usr.bin
  1216.  
  1217.                 # Subdirs of top level dirs.  (tiny subset)
  1218.                 ls              unix/bin/ls
  1219.                 fsck            unix/etc/fsck
  1220.                 man8            unix/man/man8
  1221.  
  1222.                 # Programs without subdirs. (tiny subset)
  1223.                 cat             unix/bin Makefile cat.c
  1224.                 uniq            unix/usr.bin Makefile uniq.c
  1225.  
  1226.                 # /usr/local/src
  1227.                 localsrc        localsrc
  1228.                 gnu             localsrc/gnu
  1229.                 public          localsrc/public
  1230.                 X11             localsrc/X11
  1231.  
  1232.                 # GNU and PD tools
  1233.                 cvs             localsrc/gnu/cvs
  1234.                 emacs           localsrc/gnu/emacs
  1235.                 rcs             localsrc/gnu/rcs
  1236.                 btoa            localsrc/public/btoa
  1237.                 tcsh            localsrc/public/tcsh
  1238.  
  1239.                 # X11 related items.
  1240.                 tvtwm           localsrc/X11/contrib/tvtwm
  1241.  
  1242.    "unix" was checked out and built from the top down, using a set of
  1243.    Makefiles that knew about the whole structure. "localsrc" was kept
  1244.    checked out in /usr/local/src.
  1245.    
  1246.    At any time I could run "checkout ls" or "checkout cat" and get a
  1247.    simple directory with only that tool in it, plus a subset Makefile
  1248.    that knew how to build that tool against the installed (or alternate,
  1249.    via environment variables) headers and libraries.
  1250.    
  1251.    I found it very handy to be able to run "ls" and see the three tools I
  1252.    was porting that week.
  1253.    
  1254.    Last modified: _6/13/1997_
  1255.    
  1256.     3. Can I have multiple source repositories, one for each project? 
  1257.     
  1258.    Yes, you can have as many Repositories as you like. But each
  1259.    Repository must be managed separately, creating additional work.
  1260.    
  1261.    Question 4A.1 provides a short description of setting up a single
  1262.    Repository. A few additional considerations:
  1263.    
  1264.      It is a good idea to start by creating a single Repository and split
  1265.    it up (or create additional Repositories) only if you believe it is
  1266.    really necessary. I would only create a new Repository if the data is
  1267.    completely disconnected from the rest of the main Repository.
  1268.    
  1269.      If there is a lot of overlap among the developers working on the
  1270.    collections of files you want to place in different Repositories, or
  1271.    if there is any connection between those collections, I would go out
  1272.    of my way to create a single Repository. It is much easier to manage.
  1273.    
  1274.      Disk space should not be a factor since you can build up a
  1275.    Repository using symbolic links and/or remote mounts.
  1276.    
  1277.      Each Repository is completely distinct. You can't check out modules
  1278.    from different Repositories at the same time. A better way of looking
  1279.    at it is that if you *can* check out two modules or directories with a
  1280.    single "checkout" command (without contortions or explicit absolute
  1281.    pathnames), then they are in the same Repository.
  1282.    
  1283.      To "checkout" modules from multiple Repositories, you must use the
  1284.    "cvs -d" option on all CVS commands or alter your $CVSROOT variable
  1285.    when you change focus to another Repository. If you work with multiple
  1286.    Repositories, it is a good idea to configure CVS to use absolute
  1287.    pathnames in the ./CVS/Repository file, since most commands (other
  1288.    than "checkout") will use that file rather than $CVSROOT.
  1289.    
  1290.      If you configure CVS to use relative pathnames in your
  1291.    ./CVS/Repository files, you must always be careful to set your
  1292.    $CVSROOT properly or you will get unexpected results.
  1293.    
  1294.    If you have two modules or directories by the same name at the same
  1295.    relative path inside two different Repositories, you are asking for
  1296.    disaster. You could unexpectedly update a directory with completely
  1297.    unrelated files. This is not a fanciful example -- a Repository is
  1298.    occasionally duplicated for release purposes in which case *all* the
  1299.    paths in the two Repositories are the same.
  1300.    
  1301.    Last modified: _6/13/1997_
  1302.    
  1303.     4. Who should administer the Repository and manage the modules file? 
  1304.     
  1305.    This is a "management style" question. In large or traditional groups,
  1306.    the CVS procedures are warped to conform to local conventions. In
  1307.    small groups, in groups with strong personalities or on new projects
  1308.    the choice of source control procedures can help create some of the
  1309.    working environment. Here is a taxonomy of environments I have worked
  1310.    in or helped set up:
  1311.    
  1312.    Situation 1.
  1313.    
  1314.    A small number of competent developers working on a medium size
  1315.    project. We all got along and we all respected each other (at least
  1316.    technically). Anyone edited anything.
  1317.    
  1318.    Modules and Repository admin was mostly left to me. I never found a
  1319.    problem in minor changes made by anyone else.
  1320.    
  1321.    Situation 2.
  1322.    
  1323.    A large number of experienced developers sprinkled with wackos. Many
  1324.    of the developers didn't want to deal with any kind of source control.
  1325.    They wanted a full-service source control system that caused them zero
  1326.    thought.
  1327.    
  1328.    I learned "big stick" diplomacy here. There was a small number of
  1329.    "designated" (by me) people who were allowed to do *anything* other
  1330.    than "update" and "commit". Even "checkouts" were controlled. This is
  1331.    where I found "history" and "release" the most useful.
  1332.    
  1333.    Situation 3.
  1334.    
  1335.    A small number of developers who wanted me to "help", but who didn't
  1336.    want to deal with anything other than their favorite algorithms.
  1337.    
  1338.    I didn't have the time to baby-sit this group, so I designated one of
  1339.    them to be my official contact and made him do it all. He felt sullied
  1340.    by the requirement to pay attention to anything other than his pet
  1341.    coding projects, but enjoyed the "status" of being the only one who
  1342.    could touch the control files without my kicking the chair out from
  1343.    under him.
  1344.    
  1345.    Situation 4.
  1346.    
  1347.    A huge number of developers of covering the whole spectrum of
  1348.    competence and experience split into 20 groups, none of which
  1349.    cooperated with the others, working on 57 different projects, most of
  1350.    which didn't inter-operate.
  1351.    
  1352.    Managing it in any coherent way was not my responsibility (and beyond
  1353.    my tolerance for chaos). Too many people. So I privately designated a
  1354.    person in each group to be the contact and kept watch on the
  1355.    Repository activity. When something went wrong, I notified the contact
  1356.    for the group and told him what was happening and *he* kept his troops
  1357.    in line. They were tougher with their own group that I would have
  1358.    been.
  1359.    
  1360.    Eventually only a few people were willing to touch the control files,
  1361.    since they were flamed from all directions if they screwed up.
  1362.    
  1363.    Situation 5.
  1364.    
  1365.    In a medium group of really *serious*, and seriously overworked,
  1366.    people, someone else was designated the "master". I convinced the
  1367.    master I knew what I was doing and went on my way.
  1368.    
  1369.    No one else in the world was allowed to touch anything.
  1370.    
  1371.    Situation 6.
  1372.    
  1373.    In a large amorphous group of beginners, experts and clowns, over whom
  1374.    no one had official control, I was forced to employ a group of
  1375.    relative beginners (who became experts rather quickly) to police the
  1376.    world. The ultimate in locking the barn after the horse was stolen, we
  1377.    kept Chaos from destroying us only by use of superior firepower.
  1378.    
  1379.    My choice, if allowed, is to let anyone touch anything. I keep backups
  1380.    of important items and let people know individually whether I want
  1381.    them to touch things or not. If someone on my "no touch" list touches
  1382.    and succeeds, they are allowed more slack. If they screw up after
  1383.    being warned, their screwup becomes public. After a few months, I
  1384.    usually have no trouble keeping the world running smoothly, at least
  1385.    from my (and CVS's) perspective.
  1386.    
  1387.    Last modified: _6/13/1997_
  1388.    
  1389.     5. Isn't disk space a big factor? CVS copies files out of the Repository,
  1390.     duplicating everything. 
  1391.     
  1392.    Everyone knows that disk space is getting cheaper. How do we reconcile
  1393.    this with the equally well-known problem that *all* disk is *always*
  1394.    filled up?
  1395.    
  1396.    In my opinion, the main reason disk space will never be an unlimited
  1397.    resource is that it is the major variable in organizational time/space
  1398.    tradeoffs. It isn't a problem of waste or an aspect of Murphy's law,
  1399.    as some claim it is, but rather a direct consequence of good
  1400.    management. Disk space is, and will always be, a limited resource.
  1401.    
  1402.    First, the cost of *deploying* that disk is not dropping as fast as
  1403.    the cost of the storage medium. The cost of machines to hold the disks
  1404.    and the networks to connect them are dropping more slowly than disk
  1405.    media. And the cost of the human time necessary to manage the
  1406.    machines, networks, disks, and the developers using them, is not
  1407.    dropping at all. The cost of human time continues to rise.
  1408.    
  1409.    If management decides that expensive human time can be saved by using
  1410.    all that new disk space to keep the last three releases online, then
  1411.    that's what it will be used for. If each release takes up a Gigabyte
  1412.    and you support 30 platforms, a simple time-saving suggestion has just
  1413.    grabbed 100 Gigabytes of disk space. And we've ignored the potential
  1414.    disk storage needed to support "better Customer Service", another
  1415.    management refrain.
  1416.    
  1417.    Even at 30 cents per Megabyte (next year's price), you've just used up
  1418.    $30,000 of disk space. And that doesn't count the computers, tape
  1419.    drives and humans necessary to maintain and deploy all of it. Spending
  1420.    money to save time has its own overhead, too.
  1421.    
  1422.    Binaries are getting bigger. Graphics and data collection devices can
  1423.    eat up any amount of disk. There are more tools available, more
  1424.    libraries, more raw data than you can ever store. My home computer has
  1425.    a Gigabyte of disk on it. It could easily handle 30.
  1426.    
  1427.    The "economy" of disk storage media will never remove the need to
  1428.    manage disk space.
  1429.    
  1430.    So, here's an un-reviewed suggestion originally from Graydon Dodson
  1431.    <grdodson@lexmark.com>, which I've altered and edited heavily.
  1432.    
  1433.    - Keep a directory where the whole tree is checked out. (It might be
  1434.    built and tested once in a while to make sure it is worth linking to,
  1435.    but that doesn't affect the source control aspect of this procedure).
  1436.    Let's call it /master/build.
  1437.    
  1438.    - Write a tool that creates a tree of directories (like the X11
  1439.    "lndir" command) filled with links to the checked out files in the
  1440.    /master/build tree.
  1441.    
  1442.    This tool should also provide real copies of, not symlinks to, all the
  1443.    files within the CVS administrative directories.
  1444.    
  1445.    - You could also provide a way for the tool to take a list of whole
  1446.    directories that you will never change, for which it would create a
  1447.    single symlink to the directory and not a subtree of symlinks to
  1448.    files. Or you could rm -r pieces of the resulting working directory
  1449.    yourself and replace it with links.
  1450.    
  1451.    - If you want to edit a file, you have to grab a real copy and keep it
  1452.    until your revision shows up in the /master/build tree. I'd create a
  1453.    script to do this: cvsgrab <file>
  1454.    
  1455.                 #!/bin/csh -f
  1456.                 set f = $1
  1457.                 if (! -l $f) then
  1458.                    echo "file $f is not a symlink"
  1459.                    exit 1
  1460.                 endif
  1461.                 rm $f
  1462.                 set rev = `grep "^/$f/" CVS/Entries | awk -F/ '{print $3}'`
  1463.                 cvs update -p -r $rev $f > $f
  1464.  
  1465.    You can't do a plain "cvs update" since that would grab newer
  1466.    revisions from the Repository, not the revision you wanted to start
  1467.    with. After the file is no longer a symlink, you can work normally.
  1468.    You'll have to run "update" before "commit" anyway if there are newer
  1469.    revisions.
  1470.    
  1471.    - Presumably there would also be a tool to traverse the link tree and
  1472.    revert it to links if there are no modified files and/or if all the
  1473.    real files match the revision of the /master/build tree.
  1474.    
  1475.    - To avoid confusing CVS when the /master/build revisions are updated
  1476.    but your CVS/Entries files is not, CVS would have to change to handle
  1477.    symlinks. It currently causes problems with this scenario:
  1478.    
  1479.      ./<file> is a symlink.
  1480.    
  1481.      ./CVS/Entries says you are revision 1.2.
  1482.    
  1483.      The corresponding CVS/Entries file in /master/build says the latest
  1484.    revision is 1.3.
  1485.    
  1486.      cvs update <file> shows a 'C' conflict flag.
  1487.    
  1488.    Last modified: _6/13/1997_
  1489.    
  1490.   Category: /Advanced_Topics_/Installing_CVS/
  1491.   
  1492.    " + Installing CVS"
  1493.    
  1494.     1. What do I have to do before I install CVS? 
  1495.     
  1496.      You must decide where to set up a Repository.
  1497.    
  1498.    Though you can construct a Repository tree structure using links and
  1499.    mount points, there must be a single copy of each real file across
  1500.    your entire organization. You may not "rdist" files and expect to edit
  1501.    both copies.
  1502.    
  1503.    CVS does not support a truly distributed Repository. You can have
  1504.    multiple Repositories, but each one must be mounted (not copied or
  1505.    "rdist"ed) from a single place onto all machines where it will be
  1506.    used.
  1507.    
  1508.    Initially, a Repository takes about same amount of disk space as the
  1509.    sources you want to put into it, plus a bit of overhead for the RCS
  1510.    files.
  1511.    
  1512.    See Section 4B. For multiple Repositories, see 4G.3
  1513.    
  1514.      You need a directory in everyone's $PATH variable where you can
  1515.    install all the executables. /usr/local/bin is a common place.
  1516.    
  1517.      You need some helper tools besides CVS such as "RCS" and a good set
  1518.    of "diff" and "diff3" programs. See 1B.4 for suggestions.
  1519.    
  1520.      Read the README, INSTALL and ChangeLog files to see what you are
  1521.    getting into.
  1522.    
  1523.      Make sure you have versions of all the programs mentioned in the
  1524.    "cvs/src/options.h" and "cvs/src/rcs.h" files.
  1525.    
  1526.      Though you can probably muddle along without it, you should appoint
  1527.    one or more "Repository Administrators" who will be responsible for
  1528.    maintaining the Repository structure, administrative files and the
  1529.    "modules" interface.
  1530.    
  1531.    Someone at your site should probably be on the info-cvs mailing list.
  1532.    See 1B.5.
  1533.    
  1534.    Last modified: _6/13/1997_
  1535.    
  1536.     2. How do I configure the CVS programs? 
  1537.     
  1538.      You should certainly start by reading the README file, the INSTALL
  1539.    files and possibly the ChangeLogs in each directory, the Makefile.in
  1540.    files and the "cvsinit.sh" program.
  1541.    
  1542.      Edit the "options.h" file in the "src" directory.
  1543.    
  1544.    You might need to specify a few site-specific pieces of information
  1545.    including the names of a number of functions.
  1546.    
  1547.    Hint1: You probably want to set the DIFF macro to use your version of
  1548.    the GNU diff program with the '-a' option. Ours is set to "gdiff -a".
  1549.    
  1550.    Hint2: You want to use RCS 5.6.0.1 or greater and set the "HAVE_RCS5"
  1551.    macro.
  1552.    
  1553.      Execute the ./configure command.
  1554.    
  1555.      Type "make".
  1556.    
  1557.      After running "make" you might try running the "sanity.sh" script:
  1558.    ./src/sanity.sh `pwd`/src/cvs
  1559.    
  1560.    It writes into /tmp/cvs-sanity by default.
  1561.    
  1562.      Finish reading the INSTALL file and test out the system.
  1563.    
  1564.    Last modified: _6/13/1997_
  1565.    
  1566.     3. What do I have to install? 
  1567.     
  1568.      Install the "cvs" executable and "mkmodules" from the CVS sources.
  1569.    The man page is useful too. If you plan to report bugs, you should
  1570.    also install "cvsbug".
  1571.    
  1572.      Make sure you have versions of all the programs mentioned in the
  1573.    options.h file, most of which are included in a standard Unix system.
  1574.    
  1575.      Unless you plan to reimplement RCS [:-)], you must install RCS.
  1576.    
  1577.    It is a very good idea to examine the RCS installation instructions
  1578.    and make sure you are using the GNU versions of "diff" and "diff3" or
  1579.    merges (an important part of CVS) will not work as well as you'd like.
  1580.    
  1581.      Set your $CVSROOT environment variable and create the Repository
  1582.    (which you planned out in 4A.1) with the "cvsinit" command at the top
  1583.    of the CVS sources.
  1584.    
  1585.      You'll need to edit the Repository control files created by
  1586.    "cvsinit".
  1587.    
  1588.      Install any helper programs mentioned in the modules file.
  1589.    
  1590.    Last modified: _6/13/1997_
  1591.    
  1592.     4. How do I work around the merge problems in GNU diff version 2.1 or
  1593.     later? 
  1594.     
  1595.    See 1B.4 If you use recent versions of RCS and "diff", you won't run
  1596.    into the above. If you do, see 5B.8
  1597.    
  1598.    Last modified: _6/13/1997_
  1599.    
  1600.   Category: /Advanced_Topics_/Internal_errors/
  1601.   
  1602.    " + Internal errors"
  1603.    
  1604.     1. Explain: "ci error: unexpected EOF in diff output" 
  1605.     
  1606.    RCS versions earlier than 5.5 print the above error when a file does
  1607.    not end in a newline character. It can be caused by:
  1608.    
  1609.    - Editing with Emacs and not using "require-final-newline".
  1610.    - Committing a binary file.
  1611.    - Filesystem failures (NFS!) that put nulls in your file.
  1612.    
  1613.    The solution is to upgrade to RCS 5.5 or later. (Of course, this won't
  1614.    fix filesystem failures. It will merely allow RCS (and therefore CVS)
  1615.    to handle the file without error.)
  1616.    
  1617.    Last modified: _6/13/1997_
  1618.    
  1619.     2. Explain: "RCS file /Repository/module/file.c,v is in use" 
  1620.     
  1621.    This is an RCS error that occurs when its internal lock file has been
  1622.    left around by an RCS command interrupted by some sort of system
  1623.    crash, disk failure or SIGKILL signal.
  1624.    
  1625.    Go into the Repository and look for files with names similar to
  1626.    "file.c,v", usually starting with ',', '_' or '#'. Make sure they are
  1627.    really crash remnants and do not belong to transactions in progress --
  1628.    a recent last-modified timestamp is a good indicator of a live
  1629.    transaction. Delete them if they are old.
  1630.    
  1631.    Last modified: _6/13/1997_
  1632.    
  1633.     3. Explain: "co error, line 2: Missing access list" 
  1634.     
  1635.    This is an error message from RCS Version 3 when it tries to read a
  1636.    file created by a later version of RCS.
  1637.    
  1638.    HP decided to "standardize" on an ancient version of RCS some time
  1639.    ago. You can't use it for CVS. See 4H.6.
  1640.    
  1641.    Since the error comes from having a later version of RCS than HP
  1642.    supports, you probably did install the later version but must have
  1643.    recently changed your $PATH or installed the HP package that has RCS
  1644.    in it.
  1645.    
  1646.    You should either reconfigure CVS to use absolute pathnames to the
  1647.    proper versions of the RCS programs that CVS uses, or change your PATH
  1648.    to look there first. If you haven't installed the latest version of
  1649.    RCS, you should upgrade. See 1B.4
  1650.    
  1651.    Last modified: _6/13/1997_
  1652.    
  1653.     4. Explain: "error: RCS file name `xyz .c' contains white space" 
  1654.     
  1655.    RCS 5.6 doesn't allow white space in filenames. Apparently this
  1656.    restriction will be removed in RCS 5.7, but CVS may still require that
  1657.    filenames have no white space in them.
  1658.    
  1659.    Last modified: _6/13/1997_
  1660.    
  1661.     5. Explain: cvs checkout: warning: <X> is not (any longer) pertinent 
  1662.     
  1663.    This message occurs in three instances:
  1664.    
  1665.      When there is an entry in the ./CVS/Entries for file <X> and there
  1666.    is no RCS file in the Repository to back it up.
  1667.    
  1668.    If the working file exists, and hasn't changed (determined from the
  1669.    timestamp) it is removed.
  1670.    
  1671.      When you try to check out a piece of the Repository with:
  1672.    
  1673.    cvs checkout some/place/in/repository/tree
  1674.    
  1675.    and at least the first element of the path (i.e. "some" in the above)
  1676.    exists, but some part of the rest of it does not.
  1677.    
  1678.    The checkout command checks the modules file first for the whole path,
  1679.    then for a prefix of the path as a module name. If it doesn't find
  1680.    *any* portion of your path in the modules file, it says:
  1681.    
  1682.                 cvs checkout: cannot find module `<module/path>' - ignored
  1683.  
  1684.    If it finds some set of prefix directories, it prints the message you
  1685.    see.
  1686.    
  1687.    In practice this is usually a spelling error.
  1688.    
  1689.      If the Repository files you are trying to check out or update are
  1690.    not readable by you, the same problems can occur. Check the
  1691.    permissions on the files involved.
  1692.    
  1693.    Last modified: _6/13/1997_
  1694.    
  1695.     6. Why did a Repository file change from <file>,v to ,<file>,? 
  1696.     
  1697.    This is an RCS problem, since the ,<file>, syntax for file names is
  1698.    used by RCS and not CVS.
  1699.    
  1700.    RCS constructs a new <file>,v in a temporary file named ,<file>,
  1701.    (which doubles as a lock file) then renames it to <file>,v when it is
  1702.    done. The only way this is reliable is if your system's version of
  1703.    rename(2) is an atomic, as required by POSIX.
  1704.    
  1705.    If your system has a non-atomic (and therefore non-POSIX) rename(2)
  1706.    system call, RCS runs uses an internal version of this algorithm to
  1707.    approximate the atomic rename:
  1708.    
  1709.    rm <file>,v; ln ,<file>, <file>,v; rm ,<file>,
  1710.    
  1711.    If the system crashes, or you lose your NFS connection between the
  1712.    first "rm", but before the "ln", you can be left only with the
  1713.    ,<file>, file. If the crash or network failure occurs between the "ln"
  1714.    and the final "rm", you could be left with a pair of linked names.
  1715.    
  1716.    Recovery:
  1717.    - If only the ,<file>, exists, rename it to <file>,v.
  1718.    
  1719.    - If both ,<file>, and <file>,v exist and are linked, remove the
  1720.    ,<file>, file.
  1721.    
  1722.    - If both ,<file>, and <file>,v exist and are separate files, look at
  1723.    the dates, "diff" them and make your best guess. This sounds like the
  1724.    remnants of two separate events.
  1725.    
  1726.    Last modified: _6/13/1997_
  1727.    
  1728.   Category: /Advanced_Topics_/Other_Systems/
  1729.   
  1730.    " + Other Systems"
  1731.    
  1732.     1. I use a NeXT. Is there anything I need to know? 
  1733.     
  1734.    NeXTSTEP 3.0's Interface Builder uses "nib" directories, rather than
  1735.    the files used in previous revisions. It removes files it doesn't
  1736.    recognize, making it impossible to place such a directory under CVS --
  1737.    the CVS admin directory will be removed.
  1738.    
  1739.    Some time ago, <Bob_Vadnais@pdh.com> posted a palette named CVSPalette
  1740.    that claimed to resolve this problem. It was intended to preserve the
  1741.    CVS administrative directories within nib documents (directories) that
  1742.    Interface Builder usually removes.
  1743.    
  1744.    CVSPalette is no longer in its announced place:
  1745.    
  1746.                 ftp.cs.orst.edu:/pub/next/submissions
  1747.  
  1748.    though I did find two other interesting files on ftp.cs.orst.edu:
  1749.    
  1750.                 /software/NeXT/sources/tools/cvs-next-2_1_1.tar.Z
  1751.  
  1752.    which is a port of CVS 1.3 (along with RCS and diff) and:
  1753.    
  1754.                 /software/NeXT/sources/programming/cvs.postamble-2.4.gz
  1755.  
  1756.    which appears to be a set of wrappers for CVS commands that claim to
  1757.    allow you to use CVS effectively (and without need for the "command
  1758.    line") on a NeXT machine.
  1759.    
  1760.    [[Anyone know the truth about CVS and NeXT?]]
  1761.    
  1762.    Last modified: _6/13/1997_
  1763.    
  1764.     2. I use OS/2 and/or DOS and/or Windows. Is there anything I need to know? 
  1765.     
  1766.    When using a local repository, be sure to specify the local access
  1767.    method or CVS will interpret the drive letter as a remote host name
  1768.    due to the : following it:
  1769.    
  1770.         WRONG:  CVSROOT=C:\SRC\CVSROOT
  1771.  
  1772.         RIGHT:  CVSROOT=:local:C:\SRC\CVSROOT
  1773.  
  1774.    (larry.jones@sdrc.com)
  1775.    
  1776.    You can share RCS files between Unix and DOS while avoiding the MS-DOS
  1777.    file name limits by setting your RCSINIT environment variable to
  1778.    '-x/,v'. New RCS files will be created without the standard ",v"
  1779.    suffix, though files ending in ",v" will still be found if there is no
  1780.    matching file in the same directory without the ",v".
  1781.    
  1782.    Erik van Linstee offers an OS/2 and a DOS port of CVS 1.3 in:
  1783.    
  1784.    ftp.informatik.tu-muenchen.de:/pub/comp/os/os2/gnu/devtools or
  1785.    ftp.rrzn.uni-hannover.de:/pub/os2-local
  1786.    
  1787.    The files are named:
  1788.    
  1789.                 cvs13p?[bs].zip
  1790.  
  1791.    Where the ? stands for the patch level (currently 8) and the b is for
  1792.    the binaries, the s for the sources.
  1793.    
  1794.    There are three binaries. An OS/2 only one (32-bit), a DOS only one
  1795.    (16-bit) and an EMX one that runs on both (32-bit).
  1796.    
  1797.    There are many differences between the Unix and the DOS versions of
  1798.    CVS. Read the material that comes with the DOS version before using
  1799.    it.
  1800.    
  1801.    [[Updates?]].
  1802.  
  1803.    Last modified: _9/22/1997_
  1804.    
  1805.     3. I use SCO Unix. Is there anything I need to know? 
  1806.     
  1807.    On SCO/UNIX 3.2 V2.0 POSIX signals don't work. Unfortunately the
  1808.    configure program detects POSIXness and configures in the use of POSIX
  1809.    signals. Workaround : Edit out the check for POSIXness in the
  1810.    configure script. [[You could also remove all occurrences of
  1811.    "-DPOSIX=1" from the Makefiles after configure is run. -dgg-]]
  1812.    
  1813.    SCO/UNIX doesn't understand #!/<some shell> syntax. This breaks the
  1814.    use of log.pl as it gets invoked by /bin/sh instead of
  1815.    !#/usr/local/bin/perl. WorkAround : edit log.pl and change it into a
  1816.    shell script which invokes perl with log.perl (renamed from log.pl) as
  1817.    input.
  1818.                                 Contributed by Joe Drumgoole
  1819.  
  1820.    Last modified: _6/13/1997_
  1821.    
  1822.     4. I use AIX. Is there anything I need to know? 
  1823.     
  1824.    The only report on AIX claims to have no trouble using it in concert
  1825.    with SunOS and IRIX platforms.
  1826.    
  1827.    Last modified: _6/13/1997_
  1828.    
  1829.     5. I use IRIX. Is there anything I need to know? 
  1830.     
  1831.    If you see "uid" numbers where you would expect user names, try adding
  1832.    -lsun to the link line. Without it CVS is unable to retrieve "passwd"
  1833.    data through NIS.
  1834.    
  1835.    Last modified: _6/13/1997_
  1836.    
  1837.     6. I use an HP system. Is there anything I need to know? 
  1838.     
  1839.    HP distributes RCS version 3 (a circa 1983 release!) with HP-UX. CVS
  1840.    does not work with RCS version 3; it requires RCS version 4 or later.
  1841.    Your best bet is to find the latest version of RCS and install it
  1842.    somewhere.
  1843.    
  1844.    HP-UX 8.07 has a serious bug with the mmap system call and NFS files;
  1845.    the bug can crash the operating system. Make sure that you configure
  1846.    RCS to avoid mmap by setting has_mmap to 0 in RCS's conf.h. This bug
  1847.    is fixed in HP-UX 9.
  1848.    
  1849.                                 Contributed by Paul Eggert
  1850.  
  1851.    If using the setgid() trick described in 4D.13, you will have to
  1852.    create an entry in the /etc/privgroup file to give the group assigned
  1853.    to the cvs executable setgid permission (see setprivgrp(1m)).
  1854.    Additionally, if you are restricting "read" access to the Repository
  1855.    by limiting access to the executable (this requires yet another
  1856.    group), then you will require that /etc/logingroup exists and is
  1857.    configured correctly (usually it's just alink to /etc/group).
  1858.    
  1859.                                 Contributed by Dale Woolridge
  1860.  
  1861.    Last modified: _6/13/1997_
  1862.    
  1863.     7. I use AFS. Is there anything I need to know? 
  1864.     
  1865.    There is a problem with the way CVS performs its locking when the
  1866.    files are within AFS. When your current PTS id != your uid, the locks
  1867.    are not deleted. The stat() system call returns the PTS id of the
  1868.    owner. If that id != your uid, CVS assumes you did not lock it, and
  1869.    leaves the lock files alone. The next time you try to use it, it
  1870.    complains that someone has the repository locked.
  1871.    
  1872.                                 Contributed by Michael Ganzberger
  1873.  
  1874.    [[This was against CVS 1.3. Is it still in CVS 1.4?]]
  1875.    
  1876.    Last modified: _6/13/1997_
  1877.    
  1878.     8. I use A/UX. Is there anything I need to know? 
  1879.     
  1880.    [[??]]
  1881.    
  1882.    Last modified: _6/13/1997_
  1883.    
  1884.   Category: /Advanced_Topics_/Related_Software/
  1885.   
  1886.    " + Related Software"
  1887.    
  1888.     1. How do I use CVS under Emacs? Is there an Emacs cvs-mode? 
  1889.     
  1890.    The pcl-cvs package distributed with CVS is an emacs package that
  1891.    helps with the update/commit process. When you are ready to update,
  1892.    you use the 'cvs-update' command within emacs. This executes "update"
  1893.    and fills a cvs-mode buffer with a line for each file that changed.
  1894.    The most helpful features are: descriptive words for what happened
  1895.    (i.e. Merged or Conflict rather than 'U' or 'C'), single keys bound to
  1896.    diffs and commits, and the ability to mark arbitrary groups of files,
  1897.    possibly from different directories, for commit as a whole.
  1898.    
  1899.    All the developers in my group that use emacs find pcl-cvs a much
  1900.    friendlier and more helpful way to update/commit than raw cvs. One vi
  1901.    user even converted to emacs just to use pcl-cvs.
  1902.    
  1903.                                 Contributed by Jeffrey M Loomis
  1904.  
  1905.    Last modified: _6/13/1997_
  1906.    
  1907.     2. What is GIC (Graphical Interface to CVS)? 
  1908.     
  1909.  
  1910.  
  1911.  
  1912.         GIC provides a graphical user interface to the Concurrent Version
  1913.         System (CVS), a powerful revision control system.  GIC is
  1914.         implemented in the Tcl/Tk programming language and is intended to
  1915.         augment the sometimes cumbersome CVS command line interface.
  1916.         
  1917.         Note that according to the official GIC page at
  1918.         http://www.cpsc.ucalgary.ca/redirect/grouplab/projects/gic/
  1919.         GIC is no longer being maintained and tkCVS is recommended
  1920.         instead.  For more on tkCVS, see http://www.cyclic.com/tkcvs/
  1921.  
  1922.         kingdon@cyclic.com
  1923.  
  1924.    Last modified: _9/6/1997_
  1925.    
  1926.     3. What is CAVEMAN? 
  1927.     
  1928.    CAVEMAN is a front end to CVS written in PERL providing a collection
  1929.    of features desired by the site where it was developed.
  1930.    
  1931.    - The ability to spread a "project" over multiple Repositories.
  1932.    - Optional automatic tagging after each commit.
  1933.    - Additional locking of files.
  1934.    - Extra before and after program hooks.
  1935.    - A layer of event logging.
  1936.    - All sorts of error messages.
  1937.    - Many changes to the semantics of commands.
  1938.    
  1939.    It is available via anonymous ftp on ftp.llnl.gov [128.115.54.18] in
  1940.    gnu/caveman_vX.Y.Z.tar.gz (The numbers X, Y, & Z vary.)
  1941.    
  1942.    contact Kathleen Dyer kdyer@llnl.gov
  1943.                                 (510)423-6803
  1944.                                 (510)423-5112 FAX
  1945.  
  1946.    [[Does someone want to elaborate?]]
  1947.    
  1948.    Last modified: _6/13/1997_
  1949.    
  1950.   Category: /Advanced_Topics_/Setting_up_and_Manag/
  1951.   
  1952.    " + Setting up and Managing the Repository"
  1953.    
  1954.     1. What do I do first? How do I create a Repository? 
  1955.     
  1956.    First, install all the programs. (See Section 4A.)
  1957.    
  1958.    Then create a Repository by executing "cvs -d init". (This works with
  1959.    CVS 1.9.)
  1960.    
  1961.    Now you can configure your repository by checking out CVSROOT: "cvs -d
  1962.    checkout CVSROOT". Change into the created directory CVSROOT. Edit the
  1963.    files you want to edit, and afterwards, commit the changes by typing
  1964.    "cvs commit".
  1965.    
  1966.    You will certainly want to add modules of your own. Edit the "modules"
  1967.    file and add lines to describe the items you want to "checkout" by
  1968.    module name. Here's a short list that could be used for storing a
  1969.    small number of GNU and PD sources:
  1970.    
  1971.                 local   local
  1972.  
  1973.                 gnu     local/gnu
  1974.                 emacs   local/gnu/emacs
  1975.                 cvs     local/gnu/cvs
  1976.  
  1977.                 public  local/public
  1978.                 pdprog1 local/public/pdprog1
  1979.                 pdprog2 local/public/pdprog2
  1980.  
  1981.                 test    test
  1982.                 junk    test/junk
  1983.  
  1984.    Andreas Kostyrka
  1985.    
  1986.    Last modified: _4/21/1998_
  1987.    
  1988.     2. What are those files in $CVSROOT/CVSROOT? 
  1989.     
  1990.    There are eight Repository control (or "database") files of interest
  1991.    in the CVSROOT directory:
  1992.    
  1993.      modules contains the "modules" database. See 1D.11, 2C.7, 4B.6 and
  1994.    4B.7 for more details.
  1995.    
  1996.      commitinfo contains two columns: 1. a regular expression to match
  1997.    against pathnames within the Repository and
  1998.    
  1999.      a <command> to execute for matching pathnames.
  2000.    
  2001.    When you execute "commit", CVS passes the Repository pathname for each
  2002.    directory (and the files to commit within that directory) to
  2003.    <command>. If <command> exits with a non-zero status, the commit is
  2004.    blocked.
  2005.    
  2006.    A <command> associated with a pathname of "DEFAULT" is executed if
  2007.    nothing else matches. Every <command> associated with a pathname of
  2008.    "ALL" is executed separately.
  2009.    
  2010.      rcsinfo contains the same first column as commitinfo, but the second
  2011.    column is a template file for specifying the log entry you are
  2012.    required to enter for each commit.
  2013.    
  2014.    "DEFAULT" and "ALL" work the same as in the commitinfo file.
  2015.    
  2016.      editinfo contains the same two columns as commitinfo, but the
  2017.    <command> in the second column is intended to do some consistency
  2018.    checking on the commit log.
  2019.    
  2020.    "DEFAULT" works as in commitinfo.
  2021.    
  2022.      loginfo contains the same two columns as commitinfo, but the
  2023.    <command> is expected to read a log message from its standard input.
  2024.    The <command> can do anything it wants with the log information, but
  2025.    normally it is appended to a log file or sent to mailing lists.
  2026.    
  2027.    "DEFAULT" & "ALL" work the same as in commitinfo.
  2028.    
  2029.      cvsignore contains "ignore" patterns that are added to the built-in
  2030.    ignore list. See 2D.10.
  2031.    
  2032.      checkoutlist contains a list of other files kept under RCS in
  2033.    $CVSROOT/CVSROOT that should be checked out by mkmodules to provide a
  2034.    readable copy.
  2035.    
  2036.      history contains a stream of text records, one for each event that
  2037.    the "history" command is interested in. Though the contents of the
  2038.    history file can be read, it is intended to be read and displayed by
  2039.    the "history" command. This file is the only one in the above list
  2040.    that is not under RCS.
  2041.    
  2042.    Last modified: _6/13/1997_
  2043.    
  2044.     3. Is there any other state stored in the Repository besides in the
  2045.     $CVSROOT/CVSROOT directory? 
  2046.     
  2047.    Only in the RCS files. The Repository holds exactly two things: the
  2048.    tree of RCS files (each usually ending in ",v") and the CVSROOT
  2049.    directory described above.
  2050.    
  2051.    Last modified: _6/13/1997_
  2052.    
  2053.     4. How do I put sources into the Repository? 
  2054.     
  2055.    There are three main ways to put files in the Repository:
  2056.    
  2057.      Use the "import" command described in Section 3H.
  2058.    
  2059.    This method is the fastest way to put trees of new code into the
  2060.    Repository and the *only* way to handle source releases from a 3rd
  2061.    party software vendor.
  2062.    
  2063.      Use "add" followed by "commit".
  2064.    
  2065.    This is how to add new files and directories to the Repository, a few
  2066.    at a time. Directories don't need to be committed.
  2067.    
  2068.      You can move RCS files directly into the Repository.
  2069.    
  2070.    You should create a directory hierarchy to hold them, but you can just
  2071.    move arbitrary ",v" files into the Repository. The only "state" in the
  2072.    Repository other than within ",v" files is in the required CVSROOT
  2073.    directory at the top of the Repository.
  2074.    
  2075.    Last modified: _6/13/1997_
  2076.    
  2077.     5. What file permissions should I use on (and in) the Repository? 
  2078.     
  2079.    If you are using pserver (password-authenticated access), see below.
  2080.    
  2081.    If you run a completely open environment (which usually means that you
  2082.    don't have, or don't want to waste, the time to deal with it):
  2083.    
  2084.    - Set all directory permissions to 777.
  2085.    
  2086.    - Have everyone set their umasks to 0.
  2087.    
  2088.    (BTW, I don't suggest this. I am merely reporting it.)
  2089.    
  2090.    If you are a normal Unix shop and want to use groups effectively:
  2091.    
  2092.    - Set all the directory permissions in the Repository to 775.
  2093.    
  2094.    If you are using a system that handles both System V and BSD
  2095.    filesystems, you might have to set the permissions to 2775.)
  2096.    
  2097.    If you are using one of the many recent versions of Unix that don't
  2098.    allow you to use the full octal mode, then you'll have to type: chmod
  2099.    u=rwx,g=rwx,o=rx,g+s dir>
  2100.    
  2101.    - Change all the groups on the directories to match the groups you
  2102.    want to write to various directories.
  2103.    
  2104.    - Make sure every user is in the appropriate groups.
  2105.    
  2106.    - Have everyone set their umask to 002, including root.
  2107.    
  2108.    If you don't want non-group members to even read the files, do the
  2109.    above, but change:
  2110.    
  2111.    - Repository directory permissions to 770. (or 2770)
  2112.    
  2113.    - umasks to 007.
  2114.    
  2115.    If you work in an environment where people can't be trusted to set
  2116.    their "umask" to something reasonable, you might want to set the umask
  2117.    for them:
  2118.    
  2119.                 mv /usr/local/bin/cvs /usr/local/bin/cvs.real
  2120.                 cat > /usr/local/bin/cvs
  2121.                 #!/bin/sh
  2122.                 umask 2         # Or whatever your site standard is.
  2123.                 exec /usr/local/bin/cvs.real ${1+"$@"}
  2124.                 ^D
  2125.  
  2126.    Pserver (Password-Authenticated Access) <blome@de.ibm.com>
  2127.    
  2128.    The above suggestions are not valid when you use the pserver facility.
  2129.    Be sure to read and understand the manual section about this (should
  2130.    be 4.6.something). Above all: do /not/ make the repository and CVSROOT
  2131.    group writeable. In CVSROOT, make `history┤ group or world writeable
  2132.    instead.
  2133.    
  2134.    I suggest creating one unix group per project group. In the
  2135.    repository, you would then create one directory for each group, group
  2136.    writeable. New projects must then be created in these group
  2137.    directories. If you don't want to say <group>/<project> on
  2138.    checkout, create a <project> module and point it there.
  2139.    
  2140.    Last modified: _9/24/1998_
  2141.    
  2142.     6. How do I structure my Repository? 
  2143.     
  2144.    The Repository holds your software. It can be all interrelated or it
  2145.    can be a bunch of separately managed directories.
  2146.    
  2147.    How you break a whole system down into its component parts, while
  2148.    defining interfaces between them, is one aspect of "Software
  2149.    Engineering", a discipline that requires the study of dozens of
  2150.    strange and wonderful areas of the computer and management worlds.
  2151.    
  2152.    CVS provides a way to keep track of changes to individual files, a way
  2153.    to "tag" collections of files, and a way to "name" collections of
  2154.    files and directories. That's all. Everything else is in the way you
  2155.    apply it.
  2156.    
  2157.    In other words, you should structure your Repository to match your
  2158.    needs, usually tied in with the other tools you use to build, install
  2159.    and distribute your work. Common needs include the ability to:
  2160.    
  2161.    - mount (or automount) directories from many places in your
  2162.    organization.
  2163.    - check out just what you need and no more.
  2164.    - check out multiple sections in a fixed relation to each other.
  2165.    - check out large sections to match the assumptions built into your
  2166.    build system. (Makefiles?)
  2167.    
  2168.    In my opinion, you should start small and keep everything in one tree,
  2169.    placing each major sub-system into a separate directory. Later, when
  2170.    you know what you are doing, you can make it more sophisticated.
  2171.    
  2172.    Last modified: _6/13/1997_
  2173.    
  2174.     7. Why would anyone use "modules"? They are too restrictive. I want to be
  2175.     able to select just the files I want to edit. 
  2176.     
  2177.    Any form of structure is restrictive. If you believe that total chaos
  2178.    is a viable working paradigm, or if you believe you can keep track of
  2179.    the interrelations between all portions of your Repository in your
  2180.    head, then you can do what you please.
  2181.    
  2182.    If you believe that systems of files require management and structure,
  2183.    then the "modules" idea is very useful. It is a way to impose a naming
  2184.    scheme on a tree of files, a naming scheme that can be simpler than a
  2185.    large list of relative pathnames.
  2186.    
  2187.    The "modules" file represents a published interface to the Repository
  2188.    set up by your Repository Administrator. If s/he did a creditable job,
  2189.    the modules offered will be internally consistent and will smoothly
  2190.    interact with the rest of your environment.
  2191.    
  2192.    Last modified: _6/13/1997_
  2193.    
  2194.     8. How do I rename a file or directory? What are the consequences? 
  2195.     
  2196.    In CVS there is no single "rename" command.
  2197.    
  2198.    See 2C.4 for the suggested way to rename a file or directory.
  2199.    
  2200.    The rest of this section covers some of the consequences of renaming.
  2201.    
  2202.    A "renaming database" has been proposed that would keep track of name
  2203.    changes so that "update -r <tag>" would continue to work across the
  2204.    renaming. But as it stands, you have to pick one of the following
  2205.    options:
  2206.    
  2207.      Use the technique described in 2C.4. (For each file, duplicate the
  2208.    file in the Repository, "remove" the old version so it winds up in the
  2209.    Attic and strip all Tags off the new version.)
  2210.    
  2211.    - "update -r <tag>" produces the correct files.
  2212.    
  2213.    - The duplicated revision history can be slightly misleading.
  2214.    
  2215.    - A plain (i.e. without the "-r <tag>") "checkout" or "update -d" will
  2216.    create directories "renamed" this way, but you can delete it and a
  2217.    plain "update" won't bring it back.
  2218.    
  2219.      Move the files and directories in the Repository to the new names.
  2220.    
  2221.    - You save the revision history under a different file name.
  2222.    
  2223.    - You save a little space.
  2224.    
  2225.    - "update -r <tag>" produces the wrong files or directories.
  2226.    
  2227.    This is not a good general solution, but if you plan never to look
  2228.    back (someone may be gaining on you!), it is sometimes a useful
  2229.    notion.
  2230.    
  2231.    If you are clever with Makefiles, you might be able to rework them to
  2232.    handle either the new or old names, depending on which ones exist at
  2233.    the time. Then you can move an old <tag> onto the new, more
  2234.    sophisticated, revision of the Makefile. (Yes, this changes the
  2235.    "released" file if <tag> indicates a release. But it is an option.)
  2236.    
  2237.    - Important Note: If you rename a directory, you must rename the
  2238.    corresponding directory in every checked-out working directory. At the
  2239.    same time, you must edit the pathname stored in the ./CVS/Repository
  2240.    file within each of the moved directories.
  2241.    
  2242.    The easiest way to move a lot of directories around is to tell
  2243.    everyone to remove their working directories and check them out again
  2244.    from scratch.
  2245.    
  2246.    - The file exists in the working directory and in the ./CVS/Entries
  2247.    file, but not in the Repository. For the old file, "update" prints:
  2248.    
  2249.    cvs update: xyz.c is no longer in the repository
  2250.    
  2251.    and deletes the file. If the file was modified, "update" prints:
  2252.    
  2253.    cvs update: conflict: xyz.c is modified but no longer in the
  2254.    repository C xyz.c
  2255.    
  2256.    and leaves the file alone. In the new directory, you see:
  2257.    
  2258.    U xyz.c
  2259.    
  2260.    as you would if someone else executed "add" and "commit".
  2261.    
  2262.      For each file, copy the working file to a new name in the working
  2263.    directory and use the "cvs remove" to get rid of the old old file and
  2264.    "cvs add" to add the new one. Since there is no way for CVS to remove
  2265.    a directory, this only works for files.
  2266.    
  2267.    - This is what most people think of first. Without a "rename" command,
  2268.    the remove/add technique seems obvious.
  2269.    
  2270.    - You lose the connection of your new working file to its past
  2271.    revision history.
  2272.    
  2273.    Last modified: _6/13/1997_
  2274.    
  2275.     9. What are "Attic" directories? 
  2276.     
  2277.    When you use the "remove" command on a file, CVS doesn't delete the
  2278.    file, it only registers your desire to delete it.
  2279.    
  2280.    When you "commit" a removed file, CVS moves the Repository's matching
  2281.    RCS file into a sub-directory named "Attic" within the Repository.
  2282.    
  2283.    Attic files are examined when the '-r' or '-D' option is used on
  2284.    "checkout" or "update". If the specified revision, tag or date matches
  2285.    one on a file in the Attic, that file is checked out with the others.
  2286.    
  2287.    You can think of the Attic as a sort of dead branch, which is only
  2288.    looked at when you refer to a <tag> or <date>.
  2289.    
  2290.    Last modified: _6/13/1997_
  2291.    
  2292.     10. Is it OK to remove anything from the Repository? 
  2293.     
  2294.    In general, removing anything from the Repository is a bad idea. The
  2295.    information in a deleted object is lost forever. There are many ways
  2296.    to skip over files, directories and revisions without deleting them.
  2297.    
  2298.    Here are some of the consequences of removing the following things
  2299.    stored in the Repository:
  2300.    
  2301.      CVSROOT files (Repository control files)
  2302.    
  2303.    The Repository will work without any of them, but you should
  2304.    understand what you are losing by deleting them. See 4B.2.
  2305.    
  2306.      Revisions
  2307.    
  2308.    The only way to remove revisions is to use the "admin -o" command (or
  2309.    the equivalent RCS command "rcs -o").
  2310.    
  2311.    They are lost forever. Any tags formerly attached to deleted revisions
  2312.    are now pointing into the Phantom Zone. You'll need to contact Jor-el
  2313.    to get them back.
  2314.    
  2315.      Files
  2316.    
  2317.    You should not remove a file unless you truly never want to see it
  2318.    again. If you want to be able to check out an old revision of this
  2319.    file, use "cvs remove" instead.
  2320.    
  2321.      Tags
  2322.    
  2323.    Tags take up little space and you can't recover from deleting them. If
  2324.    you depend on tags for releases you will lose vital information.
  2325.    
  2326.      Directories
  2327.    
  2328.    There is no Attic for directories, so the only way to remove them is
  2329.    to use "rm -r". They are gone forever.
  2330.    
  2331.    If you delete (or move) a directory, all checked-out versions of that
  2332.    directory will cause CVS to halt. You'll have to visit each
  2333.    checked-out directory and remove the matching working directory by
  2334.    hand.
  2335.    
  2336.      Attic files
  2337.    
  2338.    The "remove" command sends files to the Attic. To really delete them,
  2339.    you have to go into the Attic and use "rm".
  2340.    
  2341.    If a file in the Attic has a Tag on it that you might ever want to
  2342.    check out again, you probably don't want to delete it.
  2343.    
  2344.      Lock files (named: "#cvs.[wr]fl.<pid>")
  2345.    
  2346.    These are lock files. If you are getting "lock" errors and the dates
  2347.    on the lock files indicate that they are old, you can delete them.
  2348.    
  2349.    Deleting lock files still in use by a CVS process might produce
  2350.    unusual errors.
  2351.    
  2352.    Last modified: _6/13/1997_
  2353.    
  2354.     11. Can I convert to CVS from RCS without losing my revision history? 
  2355.     
  2356.    Yes, you can simply move (or copy) your RCS files into a directory
  2357.    within the Repository, check out that directory and start working.
  2358.    
  2359.    Last modified: _6/13/1997_
  2360.    
  2361.     12. Can I move RCS files with branches in them into the Repository? 
  2362.     
  2363.    Yes, but they may not work if you created branches in a way that
  2364.    conflicts with CVS's assumptions:
  2365.    
  2366.      You can't use .0. branches. (They are reserved for "Magic" branch
  2367.    tags.)
  2368.    
  2369.      If you use branch 1.1.1, you can't use the Vendor branch.
  2370.    
  2371.    You can use other RCS branches under CVS. There is no need to create
  2372.    "magic" branch tags because the physical branch already exists.
  2373.    
  2374.    Last modified: _6/13/1997_
  2375.    
  2376.     13. Can I use raw RCS commands on the Repository? 
  2377.     
  2378.    You can use raw rcs commands directly on the Repository if you take a
  2379.    little care. The Repository itself contains no "CVS state" (as opposed
  2380.    to RCS revision histories) outside the CVSROOT directory.
  2381.    
  2382.    But using raw RCS commands to change branches, tags or other things
  2383.    that CVS depends on may render the files unusable.
  2384.    
  2385.    See 4D.7 on RCS/CVS sharing of the Repository and Section 3B on the
  2386.    "admin" command.
  2387.    
  2388.    Last modified: _6/13/1997_
  2389.    
  2390.     14. How do I convert from SCCS to RCS? 
  2391.     
  2392.    You'll have to execute something like "sccs2rcs" (in the CVS contrib
  2393.    directory) on every file. Then you can move the resulting RCS files
  2394.    into the Repository as described above.
  2395.    
  2396.    Last modified: _6/13/1997_
  2397.    
  2398.     15. How do I limit access to the Repository? 
  2399.     
  2400.    There are all sorts of ways to restrict access to Repository files,
  2401.    none of which are hooked directly into CVS.
  2402.    
  2403.    Techniques for limiting access include:
  2404.    
  2405.      Training, management and good backups.
  2406.    
  2407.    The best form of Repository control is a combination of:
  2408.    
  2409.    - A reliable backup scheme (verify it!)
  2410.    - Enough training to ensure your developers are competent and
  2411.    knowledgeable about all areas of your sources.
  2412.    - Effective management of the boundaries and grey areas.
  2413.    
  2414.    In many cases, technical solutions to "security" problems are
  2415.    inadequate. You should first try to avoid them.
  2416.    
  2417.    Personal Opinion: In an environment where "unknowns" are allowed to
  2418.    touch important sources the "owner" of the CVS Repository must be a
  2419.    large, loud, vigorous lout with a well-balanced truncheon and the
  2420.    right to use it. Don't underestimate the effectiveness of letting
  2421.    everyone know they will be strapped into the stocks on the Town Common
  2422.    and pelted with vegetables if they break something they don't
  2423.    understand without first asking the experts.
  2424.    
  2425.      Set Unix groups and permissions. See 4B.5. You can set different
  2426.    owners, groups and permissions for each sub-directory within the
  2427.    Repository if that helps.
  2428.    
  2429.      Catch invocations of "commit" by defining pre-commit programs in the
  2430.    "commitinfo" file. This is fairly powerful, since it can block commits
  2431.    based on anything you can program. Take a look at the programs in the
  2432.    "contrib" directory of the CVS source tree.
  2433.    
  2434.      Use multiple Repositories, each with its own protection scheme. If
  2435.    you use NFS (or AFS) you can even use "export" restrictions to various
  2436.    groups of machines to keep (for example) the Engineering Repository
  2437.    off the Customer Service machines.
  2438.    
  2439.      Try the "setgid" trick described in 4D.13.
  2440.    
  2441.      Try to use the RCS access control lists, though I don't think CVS
  2442.    will handle them cleanly.
  2443.    
  2444.      Edit the source code to CVS to add your own access control.
  2445.    
  2446.    Last modified: _6/13/1997_
  2447.    
  2448.     16. What are the Repository Administrator's responsibilities? 
  2449.     
  2450.    Generally, the Administrator should set "policy", create the
  2451.    Repository and monitor its size and control files.
  2452.    
  2453.    Some specific responsibilities include:
  2454.    
  2455.      Examining the Repository once in a while to clean up:
  2456.    
  2457.      Trash files left by misguided developers who mistake the Repository
  2458.    for a working directory.
  2459.    
  2460.      Non-RCS files. Other than the files CVS needs in the
  2461.    $CVSROOT/CVSROOT directory, every file in the Repository should be an
  2462.    RCS file.
  2463.    
  2464.      Lock files (both CVS '#*' and RCS ',*' files) left around after
  2465.    crashes.
  2466.    
  2467.      Wrong permissions, groups and ownerships.
  2468.    
  2469.      Locked files. (RCS locks, that is.)
  2470.    
  2471.      Attic files that should never have been under CVS at all. Don't
  2472.    blindly delete files from Attic directories -- they were mostly put
  2473.    there (via the "cvs remove") for a reason. Files that should be
  2474.    deleted are binary files (e.g. '*.o', 'core', executables) that were
  2475.    mistakenly inserted by "import -I !".
  2476.    
  2477.      Maintaining the modules file.
  2478.    
  2479.      Storing site-specific ignore patterns in the
  2480.    $CVSROOT/CVSROOT/cvsignore file.
  2481.    
  2482.      Storing the names of non-standard CVSROOT files (See 4B.2) in the
  2483.    $CVSROOT/CVSROOT/checkoutlist
  2484.    
  2485.      Maintaining the other Repository control files: commitinfo, loginfo,
  2486.    rcsinfo and editinfo.
  2487.    
  2488.      Pruning the history file every once in a while. (Try the
  2489.    "cln_hist.pl" script in the "contrib" directory.)
  2490.    
  2491.      Staying aware of developments on the info-cvs mailing list and what
  2492.    is available in the FTP and WWW archives.
  2493.    
  2494.      Running "ps ax" once in a while and kill off any "update" programs
  2495.    not running as "root". It is too easy to leave the "cvs" off the front
  2496.    of the "cvs update" command.
  2497.    
  2498.      Executing monitor programs to check the internal consistency of the
  2499.    Repository files. Ideas:
  2500.    
  2501.      Files that have a default RCS branch that is not 1.1.1 (From an
  2502.    abuse of "admin -b".)
  2503.    
  2504.      Files that have only Revisions 1.1 and 1.1.1.1, with a default
  2505.    branch of "MAIN". (From an abuse of "admin -o".)
  2506.    
  2507.      Existing branch tags and various branch consistency checks.
  2508.    
  2509.    Last modified: _6/13/1997_
  2510.    
  2511.     17. How do I move the whole Repository? 
  2512.     
  2513.    Copy or move the tree. (On Unix systems, a set of piped "tar" commands
  2514.    works great. If the Repository does not contain any symlinks, which it
  2515.    normally doesn't, you can also use "cp -r".)
  2516.    
  2517.    If you can avoid changing $CVSROOT (i.e. the "logical" pathname of the
  2518.    Repository) by replacing the old location with a symbolic link to the
  2519.    new location, you don't have to do anything else.
  2520.    
  2521.    (You could also mount the new location on top of the old location if
  2522.    you are using NFS or some other filesystem that allows it.)
  2523.    
  2524.    If you must change $CVSROOT, you must also tell everyone to change the
  2525.    CVSROOT environment variable in all running shells and in any personal
  2526.    configuration files ('.' files on Unix) where it is set.
  2527.    
  2528.    The Repository itself contains no references to its own name, except
  2529.    possibly in some of the files in the CVSROOT directory. If your
  2530.    modules (or loginfo, commitinfo, etc.) file mentions helper programs
  2531.    directly in the Repository, you'll have to change the pathnames to
  2532.    point to the new Repository location.
  2533.    
  2534.    The main changes you'll have to make are to all the CVS administrative
  2535.    files (./CVS/Repository and ./CVS/Root) in every working directory
  2536.    ever checked out from the previous location of the Repository you just
  2537.    moved.
  2538.    
  2539.    You have three choices:
  2540.    
  2541.      If all ./CVS/Repository files in all working directories contain
  2542.    relative pathnames, you don't have to do anything else.
  2543.    
  2544.      Have everyone "release" or delete their working directories (after
  2545.    committing, or just saving, their work) and check them all out again
  2546.    from the new Repository after the move.
  2547.    
  2548.      Use "find . ( -name Repository -o -name Root )" and a PERL or shell
  2549.    script to run through all the ./CVS/Repository and ./CVS/Root files
  2550.    and edit the values in the files.
  2551.    
  2552.    Last modified: _6/13/1997_
  2553.    
  2554.     18. How do I change permissions on a file in the Repository by using a CVS
  2555.     command? (i.e. without using "chmod 777 $CVSROOT/dir/file") 
  2556.     
  2557.    When you first "import" or "add"/"commit" a file, the read and execute
  2558.    bits on the Repository file are inherited from the original source
  2559.    file, while the write bits on the Repository file are are turned off.
  2560.    This is a standard RCS action.
  2561.    
  2562.    After that, there is no way to alter the permissions on a file in the
  2563.    Repository using CVS (or RCS) commands. You have to change the
  2564.    permissions on both your working file and on the Repository file from
  2565.    which it was retrieved.
  2566.    
  2567.    Whenever you "checkout" the file or retrieve a new revision via
  2568.    "update" (or after a "commit"), your working file is set to match the
  2569.    permissions of the Repository file, minus any "umask" bits you have
  2570.    set.
  2571.    
  2572.    Last modified: _6/13/1997_
  2573.    
  2574.   Category: /Advanced_Topics_/Tricks_of_the_Trade/
  2575.   
  2576.    " + Tricks of the Trade"
  2577.    
  2578.     1. How can you even check in binary files, let alone allow CVS to do its
  2579.     auto-merge trick on them? 
  2580.     
  2581.  
  2582. First of all, if you want to use binary files, you should get RCS 5.7
  2583. and CVS 1.9 or later (earlier versions had some support, but there have been
  2584. bug fixes).  Secondly, follow the instructions for installing RCS very
  2585. carefully (it is easy to get it installed so it works for everything
  2586. except binary files).
  2587.  
  2588. Then, specify 'cvs add -kb' instead of just 'cvs add' to add a binary
  2589. file.  If you want to set an existing file to binary, run 'cvs admin
  2590. -kb' (and then check in a new copy of the file).  Note that old
  2591. versions of CVS used -ko instead of -kb for binary files, so if you
  2592. see a reference to -ko in the context of binary files, you should
  2593. think -kb instead.
  2594.  
  2595. Of course when 'cvs update' finds that a merge is needed, it can't
  2596. do this for binary files the same way as for text files.  With the
  2597. latest versions (e.g. CVS 1.9.14), it should be able to give you both
  2598. versions and let you merge manually.  Another approach is to
  2599. run 'cvs admin -l' to lock files, as described in
  2600. "How can I lock files while I'm working on them the way RCS does?"
  2601. elsewhere in this FAQ.  See also
  2602. "Is there any way to import binary files?" and
  2603. "How do I "add" a binary file?" elsewhere in this FAQ.
  2604.  
  2605. kingdon@cyclic.com
  2606.  
  2607.    Last modified: _9/6/1997_
  2608.    
  2609.     2. Can I edit the RCS (",v") files in the Repository? 
  2610.     
  2611.    Yes, but be very careful. The RCS files are not free-form files, they
  2612.    have a structure that is easily broken by hand-editing. The only time
  2613.    I would suggest doing this is to recover from emergency failures that
  2614.    are difficult to deal with using CVS commands, including the "admin"
  2615.    command, which can talk directly to RCS.
  2616.    
  2617.    Though no one actively encourages the editing of RCS files, many
  2618.    people have succumbed to the urge to do so when pressed for time. The
  2619.    reasons given, usually with evident contrition, include:
  2620.    
  2621.    - Editing mistakes in, or adding text to, log entries. (If you have
  2622.    RCS 5.6 or later, you should use `cvs admin -m'.)
  2623.    - Renaming or moving symbolic names. (You should `cvs admin -N'
  2624.    instead.)
  2625.    - Unlocking a file by changing the "locker" from someone else to
  2626.    yourself. (It's safer to use `cvs admin -u -l'.)
  2627.    - Making global changes to past history. Example: Eradicating former
  2628.    employees names from old documents and Author entries. (And someone
  2629.    thought the "history" command was evidence of Big Brother! I never
  2630.    realized how much help a wide-open revision control system could have
  2631.    provided to The Ministry of Truth.)
  2632.    
  2633.    Last modified: _6/13/1997_
  2634.    
  2635.     3. Can I edit the ./CVS/{Entries,Repository,Tag} files? 
  2636.     
  2637.    Yes, but with CVS 1.3 and later, there is almost no reason to edit any
  2638.    of the CVS administrative files.
  2639.    
  2640.    If you move pieces of your Repository around it can be faster to edit
  2641.    all the ./CVS/Repository files rather than checking out a large tree.
  2642.    But that is nearly the only reason to do so.
  2643.    
  2644.    Last modified: _6/13/1997_
  2645.    
  2646.     4. Someone executed "admin -o" and removed revisions to which tags/symbols
  2647.     were attached. How do I fix them? 
  2648.     
  2649.    It depends on what you mean by "fix". I can think of three ways to fix
  2650.    your predicament:
  2651.    
  2652.      Remove the tags.
  2653.    
  2654.    Assuming you really wanted to get rid of the revision and its
  2655.    associated tags, you can remove them with the "admin" command. The
  2656.    "tag -d" command will only remove tags attached to existing revisions.
  2657.    You can remove a tag, even if it is attached to a non-existent
  2658.    revision, by typing:
  2659.    
  2660.                 cvs admin -N<tag> <file>
  2661.  
  2662.      Retrieve the outdated revision.
  2663.    
  2664.    You should first look in your backup system for recent versions of the
  2665.    file. If you can't use them, you can carefully extract each revision
  2666.    that followed the earliest outdated revision using RCS (or "cvs
  2667.    admin") commands and reconstruct the file with all the right
  2668.    revisions, branches and tags. This is a lot of work.
  2669.    
  2670.    You *can't* insert a revision into the current RCS file.
  2671.    
  2672.      Move the Tags to another revision in each file.
  2673.    
  2674.    If you want to move the tags to another valid revision, you have two
  2675.    choices, both of which require that you find all the revision numbers
  2676.    of the files you want to "tag" and execute the following command
  2677.    sequences on each <file>.
  2678.    
  2679.      Use "update" to grab the revision you want, then execute a normal
  2680.    "tag" command to Tag that revision:
  2681.    
  2682.                         cvs update -r <rev> <file>
  2683.                         cvs tag <tag> <file>
  2684.  
  2685.      Use "admin" to set the tag to a specific revision:
  2686.    
  2687.                         cvs admin -N<tag>:<rev> <file>
  2688.  
  2689.    Last modified: _6/13/1997_
  2690.    
  2691.     5. How do I move or rename a magic branch tag? 
  2692.     
  2693.    (To rename a non-branch <tag> see 3O.9.)
  2694.    
  2695.    Before reading this, read 3M.3 and 3M.4 and understand exactly how tag
  2696.    and rtag use '-r' and why it won't do the right job here.
  2697.    
  2698.      First, I have to explain exactly what a magic branch tag is.
  2699.    
  2700.    A magic <branch_tag> is an artificial tag attached to a non-existent
  2701.    revision on a non-existent branch number zero. It looks like this:
  2702.    
  2703.                 TAG1:<X>.0.Y
  2704.  
  2705.    <X> is the "branch point revision", a normal revision with an
  2706.                 odd number of '.'s in it. (e.g. 1.5, 1.3.1.6, etc)
  2707.  
  2708.              Y  is an even number (e.g. 2, 4, 6, etc.)  All CVS branches,
  2709.                 other than the Vendor branch, are even numbered.
  2710.  
  2711.    TAG1 is considered by CVS to be attached to revision <X>. The first
  2712.    "update -r TAG1 <file>" after applying TAG1 will produce a copy of
  2713.    revision <X> with a sticky tag of TAG1. The first "commit" to that
  2714.    file will cause CVS to construct an RCS branch named <X>.Y and check
  2715.    in revision <X>.Y.1 on the new branch.
  2716.    
  2717.    Note: TAG1 is *not* considered to be attached to <X> by RCS, which
  2718.    explains why you can't refer directly to the branch point revision for
  2719.    some CVS commands.
  2720.    
  2721.      Moving a magic <branch_tag> is the act of reapplying the same tag to
  2722.    different revisions in the file:
  2723.    
  2724.                 TAG1:<X>.0.Y
  2725.            to
  2726.                 TAG1:<X>.0.Z    or      TAG1:<A>.0.B
  2727.  
  2728.    You can move a magic branch tag to the revisions of your choice by
  2729.    using "update" to find the revisions you want to tag and reapplying
  2730.    the tag to all the files with the '-F' option to force it to move the
  2731.    existing <branch_tag>.
  2732.    
  2733.                 cvs update -r <tag/rev>  (or '-A' for the Main Branch)
  2734.                 cvs tag -F -b <branch_tag>
  2735.  
  2736.    If the earlier location of TAG1 refers to a physical branch within any
  2737.    RCS file, moving it will make the existing branch in the file seem to
  2738.    disappear from CVS's view. This is not a good idea unless you really
  2739.    want to forget the existence of those RCS branches.
  2740.    
  2741.    If the "update" above retrieves the original branch point revision
  2742.    (<X>), the "tag" command above will create the tag:
  2743.    
  2744.                 TAG1:<X>.0.Z
  2745.  
  2746.    Where Z is 2 greater than the highest magic branch already on revision
  2747.    <X>. The TAG1 branch will still have the same branch point (i.e.
  2748.    revision <X>), but the first commit to the new TAG1 branch will create
  2749.    a different RCS branch number (<X>.Z instead of <X>.Y).
  2750.    
  2751.      Renaming a magic <branch_tag> is the act of changing
  2752.    
  2753.                 TAG1:<X>.0.Y
  2754.            to
  2755.                 TAG2:<X>.0.Y
  2756.  
  2757.    There is no harm in changing a tag name as long as you forget that
  2758.    TAG1 ever existed and you clean up any working directories with sticky
  2759.    TAG1 tags on them by using "update -A", "update -r <other_tag>" or by
  2760.    removing the working directories.
  2761.    
  2762.    On the other hand, actually changing the tag is not easy.
  2763.    
  2764.    See 3M.3 for why the seemingly obvious solution won't work:
  2765.    
  2766.                 cvs tag -b -r <old_branch_tag> <new_branch_tag>
  2767.  
  2768.    The only direct way to rename a magic tag is to use the "admin"
  2769.    command on each file: (You might want to use '-n'. Read "man rcs" and
  2770.    look at the '-n' and '-N' options.)
  2771.    
  2772.                 cvs admin -N<new_branch_tag>:<old_branch_tag> .
  2773.                 cvs tag -d <old_branch_tag>
  2774.  
  2775.    But you have to be careful because "admin" is different from other CVS
  2776.    commands:
  2777.    
  2778.      "admin" can be used recursively, but only by specifying directory
  2779.    names in its argument list (e.g. '.'),
  2780.    
  2781.      Where "rtag -r <old_branch_tag>" would interpret <old_branch_tag> as
  2782.    a magic CVS branch tag, "admin" is a direct interface to RCS which
  2783.    sees a magic branch tag as a simple (though non-existent) RCS revision
  2784.    number.
  2785.    
  2786.    This is good for us in this particular case, but different from normal
  2787.    CVS.
  2788.    
  2789.      "admin" also skips the Attic and produces different kinds of errors
  2790.    than CVS usually does. (Because they are coming directly from RCS.)
  2791.    
  2792.    The other way to rename a magic <branch_tag> is to edit the Repository
  2793.    files with a script of some kind. I've done it in the past, but I'll
  2794.    leave it as an exercise for the reader.
  2795.    
  2796.    Last modified: _6/13/1997_
  2797.    
  2798.     6. Can I use RCS locally to record my changes without making them globally
  2799.     visible by committing them? 
  2800.     
  2801.    You can, but it will probably confuse CVS to have ",v" files in your
  2802.    working directory. And you will lose all your log entries when you
  2803.    finally commit it.
  2804.    
  2805.    Your best bet is to create your own CVS branch and work there. You can
  2806.    commit as many revisions as you want, then merge it back into the main
  2807.    line (or parent branch) when you are finished.
  2808.    
  2809.    Last modified: _6/13/1997_
  2810.    
  2811.     7. How can I allow access to the Repository by both CVS and RCS? 
  2812.     
  2813.    The first step is to try not to. If some people are using CVS, there
  2814.    is no reason for everyone not to. It is not hard to learn the basics
  2815.    and CVS makes certain operations *easier* than a series of RCS
  2816.    commands. Personal preference in what software tools can be applied to
  2817.    a shared Repository has to take second place to system integration
  2818.    needs. If you disagree, try writing some Lisp code for inclusion in
  2819.    your Unix kernel and see what kind of reception you get.
  2820.    
  2821.    If you really must allow routine RCS access to the CVS Repository, you
  2822.    can link an RCS sub-directory into a piece of the Repository:
  2823.    
  2824.                 ln -s /Repository/some/directory/I/want RCS
  2825.  
  2826.    and RCS will work just fine.
  2827.    
  2828.    Those who are using RCS will have to keep the following in mind:
  2829.    
  2830.      If a file was originally added to the Repository by "import" and has
  2831.    not been changed using CVS, the *RCS* default branch will remain
  2832.    attached to the Vendor branch, causing revisions checked-in by "ci" to
  2833.    wind up on the Vendor branch, instead of the main branch. Only CVS
  2834.    moves the RCS default branch on first commit.
  2835.    
  2836.    The way around this is to checkin (using "ci") all the files first and
  2837.    move them into the Repository. That way they won't have Vendor
  2838.    branches. Then RCS will work OK.
  2839.    
  2840.      It is possible to use "rcs" and "ci" to make the files unusable by
  2841.    CVS. The same is true of the CVS "admin" command.
  2842.    
  2843.      Normal RCS practice locks a file on checkout with "co -l". In such
  2844.    an environment, RCS users should plan to keep survival gear and food
  2845.    for at least 30 days near their desks. When faced with bizarre and
  2846.    unexpected permission errors, howling mobs of slavering CVS users will
  2847.    run the RCS users out of town with pitchforks and machetes.
  2848.    
  2849.    See 3C.8 for a way to avoid machetes aroused by lock collisions.
  2850.    
  2851.      Though files checked in by RCS users will correctly cause
  2852.    "up-to-date" failures during CVS "commits" and they will be
  2853.    auto-merged into CVS working directories during "update", the opposite
  2854.    won't happen.
  2855.    
  2856.    RCS users will get no warning and will not be required to merge older
  2857.    work into their code. They can easily checkin an old file on top of a
  2858.    new revision added by CVS, discarding work committed earlier by CVS
  2859.    users.
  2860.    
  2861.    See the howling mob scenario described above.
  2862.    
  2863.    RCS is great. I have used it for years. But I wouldn't mix it this
  2864.    way. In a two-camp society, you are asking for real trouble, both in
  2865.    technical hassles to clean up and in political hassles to soothe.
  2866.    Branch merges will also be a major problem.
  2867.    
  2868.    Last modified: _6/13/1997_
  2869.    
  2870.     8. I "updated" a file my friend, "bubba", committed yesterday. Why doesn't
  2871.     the file now have a modified date of yesterday? 
  2872.     
  2873.    CVS restores dates from the RCS files only on first "checkout". After
  2874.    that, it is more important to maintain a timestamp relative to the
  2875.    other files in the working directory.
  2876.    
  2877.    Example: You committed a source file at 5PM. Bubba updated his copy of
  2878.    the file, grabbing your changes, then changed and committed a new
  2879.    revision of the file at 6PM. At 7PM, you compile your file. Then you
  2880.    execute "update". If CVS sets the date to the one in the RCS file, the
  2881.    file would be given a timestamp of 6PM and your Makefile wouldn't
  2882.    rebuild anything that depended on it. Bad news.
  2883.    
  2884.    Note that the same logic applies to retrieving a revision out of the
  2885.    Repository to replace a deleted file. If CVS changes your file in an
  2886.    existing working directory, whether it was because a new revision was
  2887.    committed by someone else or because you deleted your working file,
  2888.    the timestamp on the retrieved working file *must* be set to the
  2889.    current time.
  2890.    
  2891.    When you first retrieve a file, there is no reason to expect any
  2892.    particular timestamp on the file within your working area. But later,
  2893.    when dependency checking is performed during a build, it is more
  2894.    important for the timestamps on the local files to be consistent with
  2895.    each other than than it is for working files to match the timestamps
  2896.    on the files in the Repository. See 4D.17 for some more about
  2897.    timestamps.
  2898.    
  2899.    Last modified: _6/13/1997_
  2900.    
  2901.     9. Why do timestamps sometimes get set to the date of the revision,
  2902.     sometimes not? The inconsistency causes unnecessary recompiles. 
  2903.     
  2904.    The "checkout" command normally sets the timestamp of a working file
  2905.    to match the timestamp stored on the revision in the Repository's RCS
  2906.    file.
  2907.    
  2908.    The "commit" command retains the timestamp of the file, if the act of
  2909.    checking it in didn't change it (by expanding keywords).
  2910.    
  2911.    The "update" command sets the time to the revision time the first time
  2912.    it sees the file. After that, it sets the time of the file to the
  2913.    current time. See 4D.8 for a reason why.
  2914.    
  2915.    Here's a two-line PERL program to set timestamps on files based on
  2916.    other timestamps. I've found this program useful. When you are certain
  2917.    you don't want a source file to be recompiled, you can set its
  2918.    timestamp to the stamp on the object file.
  2919.    
  2920.         #!/usr/local/bin/perl
  2921.         #
  2922.         # Set timestamp of args 2nd-Last to that of the first arg.
  2923.         #
  2924.         ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime)
  2925.                 = stat(shift);
  2926.         utime($atime,$mtime,@ARGV);
  2927.  
  2928.    Last modified: _6/13/1997_
  2929.    
  2930.     10. While in the middle of a large "commit", how do I run other commands,
  2931.     like "diff" or "stat" without seeing lock errors? 
  2932.     
  2933.    Type:
  2934.                 cvs -n <command>
  2935.  
  2936.    The '-n' option to the main cvs command turns off lock checking, a
  2937.    reasonable act for read-only commands given the promise offered by
  2938.    '-n' not to alter anything. The "diff", "log" and "stat" commands
  2939.    provide the same information (for files that are not being committed)
  2940.    when used with and without the '-n' option.
  2941.    
  2942.    Warning: Ignoring locks can produce inconsistent information across a
  2943.    collection of files if you are looking at the revisions affected by an
  2944.    active commit. Be careful when creating "patches" from the output of
  2945.    "cvs -n diff". If you are looking only at your working files, tagged
  2946.    revisions, and BASE revisions (revisions whose numbers are read from
  2947.    your ./CVS/Entries files), you should get consistent results. Of
  2948.    course, if you catch a single file in the middle of RCS activity, you
  2949.    might get some strange errors.
  2950.    
  2951.    Note that the suggested command is "cvs -n <command>". The visually
  2952.    similar command "cvs <command> -n" has no relation to the suggested
  2953.    usage and has an entirely different meaning for each command.
  2954.    
  2955.    "cvs -n update" also works in the middle of a commit, providing
  2956.    slightly different information from a plain "cvs update". But, of
  2957.    course, it also avoids modifying anything.
  2958.    
  2959.    You could also use the RCS functions, "rlog" and "rcsdiff" to display
  2960.    some of the information by referring directly to the Repository files.
  2961.    
  2962.    You need RCS version 5 or later for the commands described above to
  2963.    work reliably.
  2964.    
  2965.    Last modified: _6/13/1997_
  2966.    
  2967.     11. Where did the ./CVS/Entries.Static file come from? What is it for? 
  2968.     
  2969.    Each CVS working directory contains a ./CVS/Entries file listing the
  2970.    files managed by CVS in that working directory. Normally, if the
  2971.    "update" command finds a file in the Repository that is not in the
  2972.    ./CVS/Entries file, "update" copies the appropriate revision of the
  2973.    "new" file out of the Repository and adds the filename to the Entries
  2974.    file. This happens for files:
  2975.    
  2976.      Added to the Repository from another working directory.
  2977.    
  2978.      Dragged out of the Attic when switching branches with "update -A" or
  2979.    "update -r".
  2980.    
  2981.      Whose names were deleted from the ./CVS/Entries file.
  2982.    
  2983.    If the ./CVS/Entries.Static file exists, CVS will only bring out
  2984.    revisions of files that are contained in either ./CVS/Entries or
  2985.    ./CVS/Entries.Static. If a Repository file is found in *neither* file,
  2986.    it is ignored.
  2987.    
  2988.    The ./CVS/Entries.Static file is created when you check out an
  2989.    individual file or a module that creates working directories that
  2990.    don't contain all files in the corresponding Repository directory. In
  2991.    those cases, without an ./CVS/Entries.Static file, a simple "update"
  2992.    would bring more files out of the Repository than the original
  2993.    "checkout" wanted.
  2994.    
  2995.    The ./CVS/Entries.Static file can be removed by hand. It is
  2996.    automatically removed if you run "update -d" to create new directories
  2997.    (even if no new directories are created). (Internally, since
  2998.    "checkout" turns on the '-d' flag and calls the "update" routine, a
  2999.    "checkout" of a module or directory that writes into an existing
  3000.    directory will also remove the ./CVS/Entries.Static file.)
  3001.    
  3002.    Last modified: _6/13/1997_
  3003.    
  3004.     12. Why did I get the wrong Repository in the loginfo message? 
  3005.     
  3006.    You probably:
  3007.    
  3008.      Use multiple Repositories.
  3009.    
  3010.      Configured CVS to use absolute pathnames in the ./CVS/Repository
  3011.    file.
  3012.    
  3013.      Configured CVS not to use the ./CVS/Root file.
  3014.    
  3015.      Typed the "commit" command in one Repository with your $CVSROOT
  3016.    pointing at another.
  3017.    
  3018.    "commit" and all other CVS commands will heed an absolute pathname in
  3019.    the ./CVS/Repository file (or in the "-d CVSrootdir" override), but
  3020.    the log function doesn't take arguments -- it just looks at $CVSROOT.
  3021.    
  3022.    If you avoid even one of the four steps above, you won't see this
  3023.    problem. If you configure ./CVS/Root, you won't be allowed to execute
  3024.    the program causing the error.
  3025.    
  3026.    Last modified: _6/13/1997_
  3027.    
  3028.     13. How do I run CVS setuid so I can only allow access through the CVS
  3029.     program itself? 
  3030.     
  3031.    Setuid to root is not a great idea. Any program that modifies files
  3032.    and is used by a widely distributed group of users is not a good
  3033.    candidate for a setuid program. (The worst suggestion I've ever heard
  3034.    was to make *Emacs* setuid to root.)
  3035.    
  3036.    Root access on Unix is too powerful. Also, it might not work in some
  3037.    (secure?) environments.
  3038.    
  3039.    Running it setuid to some user other than root might work, if you add
  3040.    this line to main.c near the beginning:
  3041.    
  3042.                 setuid(geteuid());
  3043.  
  3044.    Otherwise it uses *your* access rights, rather than the effective
  3045.    uid's.
  3046.    
  3047.    Also, you have to invent a fake user whose name will show up in
  3048.    various places. But many sites, especially those who might want a
  3049.    setuid CVS for "security", want personal accountability -- no generic
  3050.    accounts. I don't know whether accountability outweighs file security.
  3051.    
  3052.    And finally, unless you take action to limit the "admin" command, you
  3053.    are leaving yourself unprotected anyway.
  3054.    
  3055.    Last modified: _6/13/1997_
  3056.    
  3057.     14. How about using groups and setgid() then? 
  3058.     
  3059.    Here is a way to run CVS setgid in some environments:
  3060.    
  3061.      Stick this near the front of the main() in main.c:
  3062.    
  3063.    setgid(getegid());
  3064.    
  3065.    This will allow "access" to work on systems where it only works on the
  3066.    real gid.
  3067.    
  3068.      Create a group named "cvsg". (This example uses "cvsg". You can name
  3069.    it as you wish.)
  3070.    
  3071.      Put *no* users in the "cvsg" group. You can put Repository
  3072.    administrators in this group if you want to.
  3073.    
  3074.      Set the cvs executable to setgid (not setuid):
  3075.    
  3076.    cd /usr/local/bin; chown root.cvsg cvs; chmod 2755 cvs
  3077.    
  3078.      Make sure every file in the Repository is in group "cvsg":
  3079.    
  3080.    chown -R root.cvsg $CVSROOT
  3081.    
  3082.      Change all directory permissions to 770. This allows all access to
  3083.    the files by the "cvsg" group (which has no members!) and no access at
  3084.    all to anyone else.
  3085.    
  3086.    find $CVSROOT -type d -exec chmod 2770 {} \;
  3087.    
  3088.    On some systems you might have to type:
  3089.    
  3090.    find $CVSROOT -type d -exec chmod u=rwx,g=rwx,o=,g+s {} \;
  3091.    
  3092.    This should allow only the cvs program (or other "setgid to group
  3093.    cvsg") programs to write into the area, but no one else. Yes the user
  3094.    winds up owning the file, but s/he can't find it again later since
  3095.    s/he can't traverse the tree. (If you enable the world execute bit
  3096.    (mode 2771) on directories, users can traverse the tree and the user
  3097.    who last wrote the file can still write to it.)
  3098.    
  3099.    If you want to allow read access, check out an entire tree somewhere.
  3100.    You have to do this anyway to build it.
  3101.    
  3102.    Note: If you are using a stupid file system that can't inherit file
  3103.    groups from the parent directory (even with the "setgid" (Octal 2000)
  3104.    bit set), you might have to modify CVS (or RCS) to reset the group
  3105.    every time you create a new file. I have not tested this.
  3106.    
  3107.    The setgid() method shares with the setuid() method the problem of
  3108.    keeping "admin" from breaking things.
  3109.    
  3110.    Last modified: _6/13/1997_
  3111.    
  3112.     15. How do I use the "commitinfo" file? 
  3113.     
  3114.    Go read 4B.2 first.
  3115.    
  3116.    The "commitinfo" file allows you to execute "sanity check" functions
  3117.    before allowing a commit. If any function called from within the
  3118.    commitinfo file exits with a non-zero status, the commit is denied.
  3119.    
  3120.    To fill out a "commitinfo" file, ask yourself (and those sharing your
  3121.    Repository) these questions:
  3122.    
  3123.    - Is there anything you want to check or change before someone is
  3124.    allowed to commit a file? If not, forget commitinfo.
  3125.    
  3126.    If you want to serialize binary files, you might consider something
  3127.    like the rcslock.pl program in the contrib directory of the CVS
  3128.    sources.
  3129.    
  3130.    - Do you want to execute the same exact thing before committing to
  3131.    every file in the Repository? (This is useful if you want to program
  3132.    the restrictions yourself.) If so, set up a single line in the
  3133.    commitinfo:
  3134.    
  3135.                 DEFAULT         /absolute/path/to/program
  3136.  
  3137.    CVS executes the program once for each directory that "commit"
  3138.    traverses, passing as arguments the directory and the files to be
  3139.    committed within that directory.
  3140.    
  3141.    Write your program accordingly. Some examples exist in the contrib
  3142.    directory.
  3143.    
  3144.    - Do you want a different kind of sanity check performed for different
  3145.    directories? If so, you'll have to decide what to do for all
  3146.    directories and enter lines like this:
  3147.    
  3148.                 regexp1         /absolute/path/to/program-for-regexp1
  3149.                 regexp2         /absolute/path/to/program-for-regexp2
  3150.                 DEFAULT         /absolute/path/to/program-for-all-else
  3151.  
  3152.    - Is there anything you want to happen before *all* commits, in
  3153.    addition to other pattern matches? If so, include a line like this:
  3154.    
  3155.                 ALL             /absolute/path/to/program
  3156.  
  3157.    It is executed independently of all the above. And it's repeatable --
  3158.    you can have as many ALL lines as you like.
  3159.    
  3160.    Last modified: _6/13/1997_
  3161.    
  3162.     16. How do I use the "loginfo" files? 
  3163.     
  3164.    See 4B.2 and the "commitinfo" question above.
  3165.    
  3166.    The "loginfo" file has the same format as the "commitinfo" file, but
  3167.    its function is different. Where the "commitinfo" information is used
  3168.    before a commit, the "loginfo" file is used after a commit.
  3169.    
  3170.    All the commands in the "loginfo" file should read data from standard
  3171.    input, then either append it to a file or send a message to a mailing
  3172.    list. If you want to make it simple, you can put shell (the shell used
  3173.    by "popen(3)") command lines directly in the "loginfo" (or
  3174.    "commitinfo") file. These seem to work:
  3175.    
  3176.    ^special /usr/ucb/Mail -s %s special-mailing-list ^other /usr/ucb/Mail
  3177.    -s %s other-mailing-list DEFAULT (echo '===='; echo %s; cat) >
  3178.    /path/name/to/log/file
  3179.    
  3180.    Last modified: _6/13/1997_
  3181.    
  3182.     17. How can I keep people with restrictive umask values from blocking
  3183.     access to the Repository? 
  3184.     
  3185.    If a user creates a new file with restricted permissions (e.g. 0600),
  3186.    and commits it, the Repository will have a file in it that is
  3187.    unreadable by everyone. The 0600 example would be unreadable by
  3188.    *anyone* but root and the user who created it.
  3189.    
  3190.    There are 3 solutions to this:
  3191.    
  3192.      Let it happen. This is a valid way to protect things. If everyone is
  3193.    working alone, a umask of 077 is OK. If everyone is working only in
  3194.    small groups, a umask of 007 is OK.
  3195.    
  3196.      Train your users not to create such things if you expect to share
  3197.    them.
  3198.    
  3199.      See 4B.5 for a small script that will reset the umask.
  3200.    
  3201.    I personally don't like the idea of a program automatically
  3202.    *loosening* security. It would be better for you all to talk about the
  3203.    issue and decide how to work together.
  3204.    
  3205.    Last modified: _6/13/1997_
  3206.    
  3207.   Category: /Commands_/
  3208.   
  3209.    " Commands "
  3210.    
  3211.   Category: /Commands_/add_ad_new/
  3212.   
  3213.    " + "add", "ad", "new""
  3214.    
  3215.     1. What is "add" for? 
  3216.     
  3217.    To add a new directory to the Repository or to register the desire to
  3218.    add a new file to the Repository.
  3219.    
  3220.    The directory is created immediately, while the desire to add the file
  3221.    is recorded in the local ./CVS administrative directory. To really add
  3222.    the file to the Repository, you must then "commit" it.
  3223.    
  3224.    Last modified: _6/13/1997_
  3225.    
  3226.     2. How do I add a new file to the branch I'm working on? 
  3227.     
  3228.    The user actions for adding a file to any branch, including the Main
  3229.    Branch, are exactly the same.
  3230.    
  3231.    You are in a directory checked out (or updated) with the '-A' option
  3232.    (to place you on the Main Branch) or the "-r <branch_tag>" option (to
  3233.    place you on a branch tagged with <branch_tag>). To add <file> to the
  3234.    branch you are on, you type:
  3235.    
  3236.                 cvs add <file>
  3237.                 cvs commit <file>
  3238.  
  3239.    If no ./CVS/Tag file exists (the '-A' option deletes it), the file
  3240.    will be added to the Main Branch. If a ./CVS/Tag file exists (the "-r
  3241.    <branch_tag>" option creates it), the file will be added to the branch
  3242.    named (i.e. tagged with) <branch_tag>.
  3243.    
  3244.    Unless you took steps to first add the file to the Main Branch, your
  3245.    new file ends up in the Attic.
  3246.    
  3247.    Last modified: _6/13/1997_
  3248.    
  3249.     3. Why did my new file end up in the Attic? 
  3250.     
  3251.    The file is thrown into the Attic to keep it from being visible when
  3252.    you check out the Main Branch, since it was never committed to the
  3253.    Main Branch.
  3254.    
  3255.    Last modified: _6/13/1997_
  3256.    
  3257.     4. Now that it's in the Attic, how do I connect it to the Main branch? 
  3258.     
  3259.    That can be considered a kind of "merge". See 4C.8
  3260.    
  3261.    Last modified: _6/13/1997_
  3262.    
  3263.     5. How do I avoid the hassle of reconnecting an Attic-only file to the Main
  3264.     Branch? 
  3265.     
  3266.    You create it on the Main Branch first, then branch it.
  3267.    
  3268.    If you haven't yet added the file or if you decided to delete the new
  3269.    Attic file and start over, then do the following: (If you added the
  3270.    file (or worse, the 157 files) to the Attic and don't want to start
  3271.    over, try the procedure in 4C.8.)
  3272.    
  3273.      Temporarily remove the sticky branch information. Either:
  3274.    
  3275.      Move the whole directory back to the Main Branch. [This might not be
  3276.    a good idea if you have modified files, since it will require a merge
  3277.    in each direction.]
  3278.    
  3279.                 cvs update -A
  3280.  
  3281.                         *or*
  3282.  
  3283.      Move the ./CVS/Tag file out of the way.
  3284.    
  3285.                 mv ./CVS/Tag HOLD_Tag
  3286.  
  3287.      Add and branch the file "normally":
  3288.    
  3289.                 cvs add <file>
  3290.                 cvs commit <file>
  3291.                 cvs tag -b <branch_tag> <file>
  3292.  
  3293.    [<branch_tag> is the same Branch Tag as you used on all the other
  3294.    files. Look at ./CVS/Entries or the output from "cvs stat" for sticky
  3295.    tags.]
  3296.    
  3297.      Clean up the temporary step.
  3298.    
  3299.      If you moved the ./CVS/Tag file, put it back. Then move the new file
  3300.    onto the branch where you are working.
  3301.    
  3302.                 mv HOLD_Tag ./CVS/Tag
  3303.                 cvs update -r <branch_tag> <file>
  3304.  
  3305.      If you ran "update -A" rather than moving the ./CVS/Tag file, move
  3306.    the whole directory (including the new file) back onto the branch
  3307.    where you were working:
  3308.    
  3309.                 cvs update -r <branch_tag>
  3310.  
  3311.    Last modified: _6/13/1997_
  3312.    
  3313.     6. How do I cancel an "add"? 
  3314.     
  3315.    If you want to remove the file entirely and cancel the "add" at the
  3316.    same time, type:
  3317.    
  3318.                 cvs remove -f <file>
  3319.  
  3320.    If you want to cancel the "add", but leave the file as it was before
  3321.    you typed "cvs add", then you have to fake it:
  3322.    
  3323.                 mv <file> <file>.hold
  3324.                 cvs remove <file>
  3325.                 mv <file>.hold <file>
  3326.  
  3327.    Last modified: _6/13/1997_
  3328.    
  3329.     7. What are the ./CVS/file,p and ./CVS/file,t files for? 
  3330.     
  3331.    The ./CVS/file,p and ./CVS/file,t files are created by the "add"
  3332.    command to hold command line options and message text between the time
  3333.    of the "add" command and the expected "commit".
  3334.    
  3335.    The ./CVS/file,p file is always null, since its function was absorbed
  3336.    by the "options" field in the ./CVS/Entries file. If you put something
  3337.    in this file it will be used as arguments to the RCS "ci" command that
  3338.    commit uses to check the file in, but CVS itself doesn't put anything
  3339.    there.
  3340.    
  3341.    The ./CVS/file,t file is null unless you specify an initial message in
  3342.    an "add -m 'message'" command. The text is handed to "rcs -i
  3343.    -t./CVS/file,t" to create the initial RCS file container.
  3344.    
  3345.    Both files must exist to commit a newly added file. If the
  3346.    ./CVS/file,p file doesn't exist, CVS prints an error and aborts the
  3347.    commit. If the ./CVS/file,t file doesn't exist, RCS prints an error
  3348.    and CVS gets confused, but does no harm.
  3349.    
  3350.    To recover from missing ,p and ,t files, just create two zero-length
  3351.    files and rerun the "commit".
  3352.    
  3353.    Last modified: _6/13/1997_
  3354.    
  3355.     8. How do I "add" a binary file? 
  3356.     
  3357.    If you configured CVS to use the GNU version of "diff" and "diff3",
  3358.    you only need to turn off RCS keyword expansion.
  3359.    
  3360.    First you turn off RCS keyword expansion for the initial checkin by
  3361.    using "add -ko". It works like "update -ko" in creating a "sticky"
  3362.    option only for the copy of the file in the current working directory.
  3363.    
  3364.                 cvs add -ko <file>
  3365.  
  3366.    Commit the file normally. The sticky -ko option will be used.
  3367.    
  3368.                 cvs commit <file>
  3369.  
  3370.    Then mark the RCS file in the Repository so that keyword expansion is
  3371.    turned off for all checked out versions of the file.
  3372.    
  3373.                 cvs admin -ko <file>
  3374.  
  3375.    Since "admin -ko" records the keyword substitution value in the
  3376.    Repository's RCS file, you no longer need the sticky option. You can
  3377.    turn it off with the "update -A" command, but if you were on a branch,
  3378.    you'll have to follow it "update -r <branch_tag>" to put yourself back
  3379.    on the branch.
  3380.    
  3381.    Managing that binary file is another problem. See 4D.1.
  3382.    
  3383.    Last modified: _6/13/1997_
  3384.    
  3385.   Category: /Commands_/admin_adm_rcs/
  3386.   
  3387.    " + "admin", "adm", "rcs""
  3388.    
  3389.     1. What is "admin" for? 
  3390.     
  3391.    To provide direct access to the underlying "rcs" command (which is not
  3392.    documented in this FAQ) bypassing all safeguards and CVS assumptions.
  3393.    
  3394.    Last modified: _6/13/1997_
  3395.    
  3396.     2. Wow! Isn't that dangerous? 
  3397.     
  3398.    Yes.
  3399.    
  3400.    Though you can't hurt the internal structure of an RCS file using its
  3401.    own "rcs" command, you *can* change the underlying RCS files using
  3402.    "admin" in ways that CVS can't handle.
  3403.    
  3404.    If you feel the need to use "admin", create some test files with the
  3405.    RCS "ci" command and experiment on them with "rcs" before blasting any
  3406.    CVS files.
  3407.    
  3408.    Last modified: _6/13/1997_
  3409.    
  3410.     3. What would I normally use "admin" for? 
  3411.     
  3412.    Normally, you wouldn't use admin at all. In unusual circumstances,
  3413.    experts can use it to set up or restore the internal RCS state that
  3414.    CVS requires.
  3415.    
  3416.    You can use "admin -o" (for "outdate") to remove revisions you don't
  3417.    care about. This has its own problems, such as leaving dangling Tags
  3418.    and confusing the "update" command.
  3419.    
  3420.    There is some feeling among manipulators of binary files that "admin
  3421.    -l" should be used to serialize access. See 3C.8.
  3422.    
  3423.    An interesting use for "admin" came up while maintaining CVS itself. I
  3424.    import versions of CVS onto the Vendor branch of my copy of CVS, make
  3425.    changes to some files and ship the diffs (created by "cvs diff -c -r
  3426.    TO_BRIAN") off to Brian Berliner. After creating the diff, I retag
  3427.    ("cvs tag -F TO_BRIAN") the working directory, which is then ready to
  3428.    produce the next patch.
  3429.    
  3430.    I'll use "add.c" as an example (only because the name is short).
  3431.    
  3432.    When the next release came out, I discovered that the released "add.c"
  3433.    (version 1.1.1.3 on the Vendor branch) was exactly the same as my
  3434.    modified file (version 1.3). I didn't care about the changelog on
  3435.    versions 1.2 and 1.3 (or the evidence of having done the work), so I
  3436.    decided to revert the file to the state where it looked like I had not
  3437.    touched the file -- where I was just using the latest on the vendor
  3438.    branch after a sequence of imports.
  3439.    
  3440.    To do that, I removed all the revisions on the main branch, except for
  3441.    the original 1.1 from which the Vendor branch sprouts:
  3442.    
  3443.                 cvs admin -o1.2: add.c
  3444.  
  3445.    Then I set the RCS "default branch" back to the Vendor branch, the way
  3446.    import would have created it:
  3447.    
  3448.                 cvs admin -b1.1.1 add.c
  3449.  
  3450.    And I moved the "TO_BRIAN" Tag to the latest revision on the Vendor
  3451.    branch, since that is the base from which further patches would be
  3452.    created (if I made any):
  3453.    
  3454.                 cvs admin -NTO_BRIAN:1.1.1.3 add.c
  3455.  
  3456.    Instead of 1.1.1.3, I could have used one of the "Release Tags" last
  3457.    applied by "import" (3rd through Nth arguments).
  3458.    
  3459.    Suggestion: Practice on non-essential files.
  3460.    
  3461.    Last modified: _6/13/1997_
  3462.    
  3463.     4. What should I avoid when using "admin"? 
  3464.     
  3465.    If you know exactly what you are doing, hack away. But under normal
  3466.    circumstances:
  3467.    
  3468.    Never use "admin" to alter branches (using the '-b' option), which CVS
  3469.    takes very seriously. If you change the default branch, CVS will not
  3470.    work as expected. If you create new branches without using the "tag
  3471.    -b" command, you may not be able to treat them as CVS branches.
  3472.    
  3473.    See 3C.8 for a short discussion of how to use "admin -l" for
  3474.    serializing access to binary files.
  3475.    
  3476.    The "admin -o <file>" allows you to delete revisions, usually a bad
  3477.    idea. You should commit a correction rather than back out a revision.
  3478.    Outdating a revision is prone to all sorts of problems:
  3479.    
  3480.      Discarding data is always a bad idea. Unless something in the
  3481.    revision you just committed is a threat to your job or your life,
  3482.    (like naming a function "<boss's name>_is_a_dweeb", or including the
  3483.    combination to the local Mafioso's safe in a C comment), just leave it
  3484.    there. No one cares about simple mistakes -- just commit a corrected
  3485.    revision.
  3486.    
  3487.      The time travel paradoxes you can cause by changing history are not
  3488.    worth the trouble. Even if CVS can't interfere with your parents'
  3489.    introduction, it *can* log commits in at least two ways (history and
  3490.    loginfo). The reports now lie -- the revision referred to in the logs
  3491.    no longer exists.
  3492.    
  3493.      If you used "import" to place <file> into CVS, outdating all the
  3494.    revisions on the Main branch back to and including revision 1.2 (or
  3495.    worse, 1.1), will produce an invalid CVS file.
  3496.    
  3497.    If the <file>,v file only contains revision 1.1 (and the connected
  3498.    branch revision 1.1.1.1), then the default branch must be set to the
  3499.    Vendor branch as it was when you first imported the file. Outdating
  3500.    back through 1.2 doesn't restore the branch setting. Despite the above
  3501.    admonition against it, "admin -b" is the only way to recover:
  3502.    
  3503.                 cvs admin -b1.1.1 <file>
  3504.  
  3505.      Although you can't outdate a physical (RCS) branch point without
  3506.    removing the whole branch, you *can* outdate a revision referred to by
  3507.    a magic branch tag. If you do so, you will invalidate the branch.
  3508.    
  3509.      If you "outdate" a tagged revision, you will invalidate all uses of
  3510.    the <tag>, not just the one on <file>. A tag is supposed to be
  3511.    attached to a consistent set of files, usually a set built as a unit.
  3512.    By discarding one of the files in the set, you have destroyed the
  3513.    utility of the <tag>. And it leaves a dangling tag, which points to
  3514.    nothing.
  3515.    
  3516.      And even worse, if you commit a revision already tagged, you will
  3517.    alter what the <tag> pointed to without using the "tag" command. For
  3518.    example, if revision 1.3 has <tag> attached to it and you "outdate"
  3519.    the 1.3 revision, <tag> will point to a nonexistent revision. Although
  3520.    this is annoying, it is nowhere near as much trouble as the problem
  3521.    that will occur when you commit to this file again, recreating
  3522.    revision 1.3. The old tag will point to the new revision, a file that
  3523.    was not in existence when the <tag> was applied. And the discrepancy
  3524.    is nearly undetectable.
  3525.    
  3526.    If you don't understand the above, you should not use the admin
  3527.    command at all.
  3528.    
  3529.    Last modified: _6/13/1997_
  3530.    
  3531.     5. How do I restrict the "admin" command? The -i flag in the modules file
  3532.     can restrict commits. What's the equivalent for "admin"? 
  3533.     
  3534.    At this writing, to disable the "admin" command, you will have to
  3535.    change the program source code, recompile and reinstall.
  3536.    
  3537.    Last modified: _6/13/1997_
  3538.    
  3539.     6. I backed out a revision with "admin -o" and committed a replacement. Why
  3540.     doesn't "update" retrieve the new revision? 
  3541.     
  3542.    CVS is confused because the revision in the ./CVS/Entries file matches
  3543.    the latest revision in the Repository *and* the timestamp in the
  3544.    ./CVS/Entries file matches your working file. CVS believes that your
  3545.    file is "up-to-date" and doesn't need to be updated.
  3546.    
  3547.    You can cause CVS to notice the change by "touch"ing the file.
  3548.    Unfortunately what CVS will tell you is that you have a "Modified"
  3549.    file. If you then "commit" the file, you will bypass the normal CVS
  3550.    check for "up-to-date" and will probably commit the revision that was
  3551.    originally removed by "admin -o".
  3552.    
  3553.    Changing a file without changing the revision number confuses CVS no
  3554.    matter whether you did it by replacing the revision (using "admin -o"
  3555.    and "commit" or raw RCS commands) or by applying an editor directly to
  3556.    a Repository (",v") file. Don't do it unless you are absolutely
  3557.    certain no one has the latest revision of the file checked out.
  3558.    
  3559.    The best solution to this is to institute a program of deterrent
  3560.    flogging of abusers of "admin -o".
  3561.    
  3562.    The "admin" command has other problems." See 3B.4 above.
  3563.    
  3564.    Last modified: _6/13/1997_
  3565.    
  3566.   Category: /Commands_/checkout_co_get/
  3567.   
  3568.    " + "checkout", "co", "get""
  3569.    
  3570.     1. What is "checkout" for? 
  3571.     
  3572.    To acquire a copy of a module (or set of files) to work on.
  3573.    
  3574.    All work on files controlled by CVS starts with a "checkout".
  3575.    
  3576.    Last modified: _6/13/1997_
  3577.    
  3578.     2. What is the "module" that "checkout" takes on the command line? 
  3579.     
  3580.    It is a name for a directory or a collection of files in the
  3581.    Repository. It provides a compact name space and the ability to
  3582.    execute before and after helper functions based on definitions in the
  3583.    modules file.
  3584.    
  3585.    See 1D.11.
  3586.    
  3587.    Last modified: _6/13/1997_
  3588.    
  3589.     3. Isn't a CVS "checkout" just a bunch of RCS checkouts? 
  3590.     
  3591.    Like much of CVS, a similar RCS concept is used to support a CVS
  3592.    function. But a CVS checkout is *not* the same as an RCS checkout.
  3593.    
  3594.    Differences include:
  3595.    
  3596.      CVS does not lock the files. Others may access them at the same
  3597.    time.
  3598.    
  3599.      CVS works best when you provide a name for a collection of files (a
  3600.    module or a directory) rather than an explicit list of files to work
  3601.    on.
  3602.    
  3603.      CVS remembers what revisions you checked out and what branch you are
  3604.    on, simplifying later commands.
  3605.    
  3606.    Last modified: _6/13/1997_
  3607.    
  3608.     4. What's the difference between "update" and "checkout"? 
  3609.     
  3610.    The "checkout" and "update" commands are nearly equivalent in how they
  3611.    treat individual files. They differ in the following ways:
  3612.    
  3613.      The "checkout" command always creates a directory, moves into it,
  3614.    then becomes equivalent to "update -d".
  3615.    
  3616.      The "update" command does not create directories unless you add the
  3617.    '-d' option.
  3618.    
  3619.      "Update" is intended to be executed within a working directory
  3620.    created by "checkout". It doesn't take a module or directory argument,
  3621.    but figures out what Repository files to look at by reading the files
  3622.    in the ./CVS administrative directory.
  3623.    
  3624.      The two commands generate completely different types of records in
  3625.    the "history" file.
  3626.    
  3627.    Last modified: _6/13/1997_
  3628.    
  3629.     5. Why can't I check out a file from within my working directory? 
  3630.     
  3631.    Though you *can* check out a file, you normally check out a module or
  3632.    directory. And you normally do it only once at the beginning of a
  3633.    project.
  3634.    
  3635.    After the initial "checkout", you can use the "update" command to
  3636.    retrieve any file you want within the checked-out directory. There is
  3637.    no need for further "checkout" commands.
  3638.    
  3639.    If you want to retrieve another module or directory to work on, you
  3640.    must provide two pathnames: where to find it in the Repository and
  3641.    where to put it on disk. The "modules" file and your current directory
  3642.    supply two pieces of naming information. While inside a checked-out
  3643.    working directory, the CVS administrative information provides most of
  3644.    the rest.
  3645.    
  3646.    You should be careful not to confuse CVS with RCS and use "checkout"
  3647.    in the RCS sense. An RCS "checkout" (which is performed by the RCS
  3648.    "co" command) is closer to a "cvs update" than to a "cvs checkout".
  3649.    
  3650.    Last modified: _6/13/1997_
  3651.    
  3652.     6. How do I avoid dealing with those long relative pathnames? 
  3653.     
  3654.    This question has also been phrased:
  3655.    
  3656.    How do I avoid all those layers of directories on checkout? or Why do
  3657.    I have to go to the top of my working directory and checkout some long
  3658.    pathname to get a file or two?
  3659.    
  3660.    This type of question occurs only among groups of people who decide
  3661.    not to use "modules". The answer is to use "modules".
  3662.    
  3663.    When you hand the "checkout" command a relative pathname rather than a
  3664.    module name, all directories in the path are created, maintaining the
  3665.    same directory hierarchy as in the Repository. The same kind of
  3666.    environment results if you specify a "module" that is really an alias
  3667.    expanding into a list of relative pathnames rather than a list of
  3668.    module names.
  3669.    
  3670.    If you use "module" names, "checkout" creates a single directory by
  3671.    the name of the module in your current directory. This "module"
  3672.    directory becomes your working directory.
  3673.    
  3674.    The "module" concept combines the ability to "name" a collection of
  3675.    files with the ability to structure the Repository so that consistent
  3676.    sets of files are checked out together. It is the responsibility of
  3677.    the Repository Administrators to set up a modules file that describes
  3678.    the software within the Repository.
  3679.    
  3680.    Last modified: _6/13/1997_
  3681.    
  3682.     7. Can I move a checked-out directory? Does CVS remember where it was
  3683.     checked out? 
  3684.     
  3685.    Yes and Yes.
  3686.    
  3687.    The ./CVS/Repository file in each working directory contains a
  3688.    pathname pointing to the matching directory within the Repository. The
  3689.    pathname is either absolute or relative to $CVSROOT, depending on how
  3690.    you configured CVS.
  3691.    
  3692.    When you move a checked-out directory, the CVS administrative files
  3693.    will move along with it. As long as you don't move the Repository
  3694.    itself, or alter your $CVSROOT variable, the moved directory will
  3695.    continue to be usable.
  3696.    
  3697.    CVS remembers where you checked out the directory in the "history"
  3698.    file, which can be edited, or even ignored if you don't use the
  3699.    "working directory" information displayed by the "history" command.
  3700.    
  3701.    Last modified: _6/13/1997_
  3702.    
  3703.     8. How can I lock files while I'm working on them the way RCS does? 
  3704.     
  3705.    Until the day arrives of the all-powerful merge tool, there are still
  3706.    files that must be accessed serially. For those instances, here's a
  3707.    potential solution:
  3708.    
  3709.      Install a pre-commit program in the "commitinfo" file to check for
  3710.    RCS locks. The program "rcslock.pl" performs this function. It can be
  3711.    found in the contrib directory of the CVS source distribution.
  3712.    
  3713.      When you want to make a change to a file you know can't be merged,
  3714.    first use "cvs admin -l" to lock the file. If you can't acquire the
  3715.    lock, use the standard "locked out" protocol: go talk to the person
  3716.    holding the lock.
  3717.    
  3718.      Make sure the pre-commit program prints a message and exits with a
  3719.    non-zero status if someone besides the user running "commit" has the
  3720.    file locked. This non-zero exist status will cause the "commit" to
  3721.    fail cleanly.
  3722.    
  3723.      Make sure the pre-commit program exits with a zero status if the
  3724.    file is either unlocked or locked by the user running "commit". The
  3725.    "cvs commit" command that kicked off the pre-commit program will take
  3726.    a zero exist status as an OK and checkin the file, which has the
  3727.    side-effect of unlocking it.
  3728.    
  3729.    ===> The following is opinion and context. Don't read it if you are
  3730.    looking for a quick fix.
  3731.    
  3732.    The topic of locking CVS files resurfaces on the network every so
  3733.    often, producing the same results each time:
  3734.    
  3735.    The Big Endians:
  3736.    
  3737.    CVS was designed to avoid locks, using a copy-modify-merge model.
  3738.    Locking is not necessary and you should take the time to learn the CVS
  3739.    model which many people find workable. So why not get with the program
  3740.    and learn how to think the CVS way?
  3741.    
  3742.    The Little Endians:
  3743.    
  3744.    The users determine how a tool is to be used, not the designers. We,
  3745.    the users, have always used locking, our bosses demand locking,
  3746.    locking is good, locking is God. I don't want to hear any more
  3747.    lectures on the CVS model. Make locking work.
  3748.    
  3749.    Any organization making active changes to a source base will
  3750.    eventually face the need to do parallel development. Parallel
  3751.    development implies merges. (If you plan to keep separate copies of
  3752.    everything and never merge, good luck. Tell me who you work for so I
  3753.    can buy stock in your disk suppliers this year and sell your stock
  3754.    short next year.)
  3755.    
  3756.    Merges will never go away. CVS chose to make "merges" stand front and
  3757.    center as an important, common occurrence in development. It is one
  3758.    way of looking at things.
  3759.    
  3760.    For free-format text, the merge paradigm gives you a considerable
  3761.    amount of freedom. It does take a bit of management, but any project
  3762.    should be ready to deal with it.
  3763.    
  3764.    On the other hand, there are many files that can't be merged using
  3765.    text merge techniques. Straight text merge programs like "diff3" are
  3766.    guaranteed to fail on executables (with relative branch statements),
  3767.    files with self-referential counts stored in the file (such as TAGS
  3768.    files), or files with relative motion statements in them (such as
  3769.    Frame MIF files, many postscript files). They aren't all binary files.
  3770.    
  3771.    For these types of files, and many others, there are only two
  3772.    solutions:
  3773.    
  3774.      Complex merge tools that are intimately aware of the contents of the
  3775.    files to be merged. (ClearCase, and probably others, allow you to
  3776.    define your own "files types" with associated "merge tools".)
  3777.    
  3778.      Serialization of access to the file. The only technical solution to
  3779.    the problem of serialization is "locking".
  3780.    
  3781.    Since you can call a program that offers:
  3782.    
  3783.    "Which one do you want? A/B?"
  3784.    
  3785.    a "merge tool", more and more merge tools will appear which can be
  3786.    hooked into a merge-intensive program like CVS. Think of a bitmap
  3787.    "merge" tool that displays the bitmaps on the screen and offers a
  3788.    "paint" interface to allow you to cut and paste, overlay, invert or
  3789.    fuse the two images such that the result is a "merged" file.
  3790.    
  3791.    My conclusion is that the need for locking is temporary, awaiting
  3792.    better technology. For large development groups, locking is not an
  3793.    alternative to merging for text files.
  3794.    
  3795.    Last modified: _6/13/1997_
  3796.    
  3797.     9. What is "checkout -s"? How is it different from "checkout -c"? 
  3798.     
  3799.    The '-c' and '-s' options to "checkout" both cause the modules file to
  3800.    appear on standard output, but formatted differently.
  3801.    
  3802.    "checkout -c" lists the modules file alphabetized by the module name.
  3803.    It also prints all data (including options like '-a' and "-o <prog>")
  3804.    specified in the modules file.
  3805.    
  3806.    "checkout -s" lists the modules file sorted by "status" field, then by
  3807.    module name. The status field was intended to allow you to mark
  3808.    modules with strings of your choice to get a quick sorted report based
  3809.    on the data you chose to put in the status fields. I have used it for
  3810.    priority ("Showstopper", etc as tied into a bug database), for porting
  3811.    status ("Ported", "Compiled", etc. when porting a large collection of
  3812.    modules), for "assignee" (the person responsible for maintenance), and
  3813.    for "test suite" (which automatic test procedure to run for a
  3814.    particular module).
  3815.    
  3816.    Last modified: _6/13/1997_
  3817.    
  3818.   Category: /Commands_/commit_ci_com/
  3819.   
  3820.    " + "commit", "ci", "com""
  3821.    
  3822.     1. What is "commit" for? 
  3823.     
  3824.    To store new revisions in the Repository, making them visible to other
  3825.    users.
  3826.    
  3827.    Last modified: _6/13/1997_
  3828.    
  3829.     2. If I edit ten files, do I have to type "commit" ten times? 
  3830.     
  3831.    No. The "commit" command will take multiple filenames, directory names
  3832.    and relative pathnames on the command line and commit them all with
  3833.    the same log message. If a file is unchanged, even if it is explicitly
  3834.    listed on the command line, CVS will skip it.
  3835.    
  3836.    Like all CVS commands, "commit" will work on the whole directory by
  3837.    default. Just type "cvs commit" to tell CVS to commit all modified
  3838.    files (i.e. the files that "update" would display preceded by 'M') in
  3839.    the current directory and in all sub-directories.
  3840.    
  3841.    Last modified: _6/13/1997_
  3842.    
  3843.     3. Explain: cvs commit: Up-to-date check failed for `<file>' 
  3844.     
  3845.    You may not "commit" a file if your BASE revision (i.e. the revision
  3846.    you last checked out, committed or retrieved via "update") doesn't
  3847.    match the HEAD revision (i.e the latest revision on your branch,
  3848.    usually the Main Branch).
  3849.    
  3850.    In other words, someone committed a revision since you last executed
  3851.    "checkout", "update" or "commit". You must now execute "update" to
  3852.    merge the other person's changes into your working file before
  3853.    "commit" will work. You are thus protected (somewhat) from a common
  3854.    form of race condition in source control systems, where a checkin of a
  3855.    minor alteration of a second copy of the same base file obliterates
  3856.    the changes made in the first.
  3857.    
  3858.    Normally, the "update" command's auto-merge should be followed by
  3859.    another round of building and testing before the "commit".
  3860.    
  3861.    Last modified: _6/13/1997_
  3862.    
  3863.     4. What happens if two people try to "commit" conflicting changes? 
  3864.     
  3865.    Conflicts can occur only when two developers check out the same
  3866.    revision of the same file and make changes. The first developer to
  3867.    commit the file has no chance of seeing the conflict. Only the second
  3868.    developer runs into it, usually when faced with the "Up-to-date" error
  3869.    explained in the previous question.
  3870.    
  3871.    There are two types of conflicts:
  3872.    
  3873.      When two developers make changes to the same section of code, the
  3874.    auto-merge caused by "update" will print a 'C' on your terminal and
  3875.    leave "overlap" markers in the file.
  3876.    
  3877.    You are expected to examine and clean them up before committing the
  3878.    file. (That may be obvious to *some* of you, but . . .)
  3879.    
  3880.      A more difficult problem arises when two developers change different
  3881.    sections of code, but make calls to, or somehow depend on, the old
  3882.    version of each other's code.
  3883.    
  3884.    The auto-merge does the "right" thing, if you view the file as a
  3885.    series of text lines. But as a program, the two developers have
  3886.    created a problem for themselves.
  3887.    
  3888.    This is no different from making cross-referential changes in
  3889.    *separate* files. CVS can't help you. In a perfect world, you would
  3890.    each refer to the specification and resolve it independently. In the
  3891.    real world you have to talk/argue, read code, test and debug until the
  3892.    combined changes work again.
  3893.    
  3894.    Welcome to the world of parallel development.
  3895.    
  3896.    Last modified: _6/13/1997_
  3897.    
  3898.     5. I committed something and I don't like it. How do I remove it? 
  3899.     
  3900.    Though you *can* use the "admin -o" (synonym: "rcs -o") command to
  3901.    delete revisions, unless the file you committed is so embarrassing
  3902.    that the need to eradicate it overrides the need to be careful, you
  3903.    should just grab an old version of the file ("update -p -r
  3904.    <previous-rev>" might help here) and commit it on top of the offending
  3905.    revision.
  3906.    
  3907.    See Section 3B on "admin".
  3908.    
  3909.    Last modified: _6/13/1997_
  3910.    
  3911.     6. Explain: cvs commit: sticky tag `V3' for file `X' is not a branch 
  3912.     
  3913.    The message implies two things:
  3914.    
  3915.      You created your working directory by using "checkout -r V3", or you
  3916.    recently executed "update -r V3".
  3917.    
  3918.      The tag named V3 is not a branch tag.
  3919.    
  3920.    CVS records (i.e. makes "sticky") any "-r <tag/rev>" argument handed
  3921.    to the "checkout" or "update" commands. The <tag/rev> is recorded as
  3922.    the CVS working branch, which is the branch to which "commit" will add
  3923.    a new revision.
  3924.    
  3925.    Branch tags are created when you use the -b switch on the "tag" or
  3926.    "rtag" commands. Branch tags are magic tags that don't create a
  3927.    physical branch, but merely mark the revision to branch from when the
  3928.    branch is needed. The first commit to a magic branch creates a
  3929.    physical branch in the RCS files.
  3930.    
  3931.    You can commit onto the end of the Main Trunk, if you have no sticky
  3932.    tag at all, or onto the end of a branch, if you have a sticky branch
  3933.    tag. But you can't commit a file that has a sticky tag not pointing to
  3934.    a branch. CVS assumes a sticky Tag or Revision that does not refer to
  3935.    a branch is attached to the middle of a series of revisions. You can't
  3936.    squeeze a new revision between two others. Sticky dates also block
  3937.    commits since they never refer to a branch.
  3938.    
  3939.    Scenario1:
  3940.    
  3941.    If you don't want a branch and were just looking at an old revision,
  3942.    then you can move back to the Main Branch by typing:
  3943.    
  3944.                 cvs update -A {files or dirs, default is '.'}
  3945.  
  3946.    or you can move to the branch named <branch_tag> by:
  3947.    
  3948.                 cvs update -r <branch_tag> {files or dirs, default is '.'}
  3949.  
  3950.    Scenario2:
  3951.    
  3952.    If you really wanted to be on a branch and made an earlier mistake by
  3953.    tagging your branch point with a non-branch tag, you can recover by
  3954.    adding a new branch tag to the old non-branch tag:
  3955.    
  3956.                     cvs rtag -b -r <oldtag> <newtag> <module>
  3957.  
  3958.    (It was not a big mistake. Branch-point tags can be useful. But the
  3959.    <newtag> must have a different name.)
  3960.    
  3961.    If you don't know the <module> name or don't use "modules", you can
  3962.    also use "tag" this way:
  3963.    
  3964.                     cvs update -r <oldtag>
  3965.                     cvs tag -b <newtag> .
  3966.  
  3967.    Then, to put your working directory onto the branch, you type:
  3968.    
  3969.                     cvs update -r <newtag>
  3970.  
  3971.    You can't delete <oldtag> before adding <newtag>, and I would not
  3972.    advise deleting the <oldtag> at all, because it is useful in referring
  3973.    to the branch point. If you must, you can delete the non-branch tag
  3974.    by:
  3975.    
  3976.                     cvs rtag -d <oldtag> <module>
  3977.                 or
  3978.                     cvs tag -d <oldtag> .
  3979.  
  3980.    Scenario3:
  3981.    
  3982.    If you made the same mistake as in Scenario2 (of placing a non-branch
  3983.    tag where you wanted a branch tag), but really want <oldtag> to be the
  3984.    name of your branch, you can execute a slightly different series of
  3985.    commands to rename it and move your working directory onto the branch.
  3986.    
  3987.    Warning: This is not a way to rename a branch tag. It is a way to turn
  3988.    a non-branch tag into a branch tag with the same name.
  3989.    
  3990.                     cvs rtag -r <oldtag> <branch_point_tag> <module>
  3991.                     cvs rtag -d <oldtag> <module>
  3992.                     cvs rtag -b -r <branch_point_tag> <oldtag> <module>
  3993.  
  3994.    Then, if you really must, delete the <branch_point_tag>:
  3995.    
  3996.                     cvs rtag -d <branch_point_tag> <module>
  3997.  
  3998.    Note: The unwieldy mixture of "tag" and "rtag" is mostly because you
  3999.    can't specify a revision (-r <tag>) to the "tag" command.
  4000.    
  4001.    See 4C.3 for more info on creating a branch.
  4002.    
  4003.    Last modified: _6/13/1997_
  4004.    
  4005.     7. Why does "commit -r <tag/rev>" put newly added files in the Attic? 
  4006.     
  4007.    If you specify "-r <rev>" (where <rev> is a dotted numeric number like
  4008.    2.4), it correctly sets the initial revision to <rev>, but it also
  4009.    attaches the numeric <rev> as a sticky tag and throws the file into
  4010.    the Attic. This is a bug. The obvious solution is to move the file out
  4011.    of the Attic into the associated Repository directory and "update -A"
  4012.    the file. There are no Tags to clean up.
  4013.    
  4014.    If you specify "-r <tag>" to commit a newly added file, the <tag> is
  4015.    treated like a <branch_tag>, which becomes a symbolic RCS label
  4016.    pointing to the string '1', which can be considered to be the "Main
  4017.    branch number" when the main branch is still at revision 1.N. The file
  4018.    is also thrown into the Attic. See 4C.8 for a way to recover from
  4019.    this.
  4020.    
  4021.    In fact, a plain "commit" without the "-r" will throw a newly added
  4022.    file into the Attic if you added it to a directory checked out on a
  4023.    branch. See 3A.[2-5].
  4024.    
  4025.    See Section 4C, on Branching, for many more details.
  4026.    
  4027.    Last modified: _6/13/1997_
  4028.    
  4029.     8. Why would a "commit" of a newly added file not produce rev 1.1? 
  4030.     
  4031.    When committing a newly added file CVS looks for the highest main
  4032.    branch major number in all files in the ./CVS/Entries file. Normally
  4033.    it is '1', but if you have a file of revision 3.27 in your directory,
  4034.    CVS will find the '3' and create revision 3.1 for the first rev of
  4035.    <file>. Normally, the first revision is 1.1.
  4036.    
  4037.    Last modified: _6/13/1997_
  4038.    
  4039.   Category: /Commands_/diff_di_dif/
  4040.   
  4041.    " + "diff", "di", "dif""
  4042.    
  4043.     1. What is "diff" for? 
  4044.     
  4045.      To display the difference between a working file and its BASE
  4046.    revision (the revision last checked out, updated or committed):
  4047.    
  4048.                 cvs diff <file>
  4049.  
  4050.      To display the difference between a working file and a committed
  4051.    revision of the same file:
  4052.    
  4053.                 cvs diff -r <tag/rev> <file>
  4054.  
  4055.      To display the difference between two committed revisions of the
  4056.    same file:
  4057.    
  4058.                 cvs diff -r <tag1/rev1> -r <tag2/rev2> <file>
  4059.  
  4060.    You can specify any number of <file> arguments. Without any <file>
  4061.    arguments, it compares the whole directory.
  4062.    
  4063.    In the examples above, "-D <date>" may be substituted wherever "-r
  4064.    <tag/rev>" appears. The revision a <date> refers to is the revision
  4065.    that existed on that date.
  4066.    
  4067.    Last modified: _6/13/1997_
  4068.    
  4069.     2. Why did "diff" display nothing when I know there are later committed
  4070.     revisions in the Repository? 
  4071.     
  4072.    By default, "diff" displays the difference between your working file
  4073.    and the BASE revision. If you haven't made any changes to the file
  4074.    since your last "checkout", "update" or "commit" there is no
  4075.    difference to display.
  4076.    
  4077.    To display the difference between your working file and the latest
  4078.    revision committed to your current branch, type:
  4079.    
  4080.                 cvs diff -r HEAD <file>
  4081.  
  4082.    Last modified: _6/13/1997_
  4083.    
  4084.     3. How do I display what changed in the Repository since I last executed
  4085.     "checkout", "update" or "commit"? 
  4086.     
  4087.    A special tag (interpreted by CVS -- it does not appear in the Tag
  4088.    list) named "BASE" always refers to the revision you last checked out,
  4089.    updated or committed. Another special tag named "HEAD" always refers
  4090.    to the latest revision on your working branch.
  4091.    
  4092.    To compare BASE and HEAD, you type:
  4093.    
  4094.                 cvs diff -r BASE -r HEAD <file>
  4095.  
  4096.    Last modified: _6/13/1997_
  4097.    
  4098.     4. How do I display the difference between my working file and what I
  4099.     checked in last Thursday? 
  4100.     
  4101.                 cvs diff -D "last Thursday" <file>
  4102.  
  4103.    where "last Thursday" is a date string. To be more precise, the
  4104.    argument to the '-D' option is a timestamp. Many formats are accepted.
  4105.    See the man page under "-D date_spec" for details.
  4106.    
  4107.    Last modified: _6/13/1997_
  4108.    
  4109.     5. Why can't I pass long options, like --unified, to "diff"? 
  4110.     
  4111.    CVS only handles single character '-X' arguments, not the FSF long
  4112.    options. CVS also passes through only arguments it knows about,
  4113.    because a few arguments are captured and interpreted by CVS.
  4114.    
  4115.    If you didn't configure RCS and CVS to use the GNU version of diff,
  4116.    long options wouldn't work even if future versions of CVS acquire the
  4117.    ability to pass them through.
  4118.    
  4119.    Most of the long options have equivalent single-character options,
  4120.    which do work. The "--unified" option is equivalent to '-u' in
  4121.    revisions of GNU diff since 1.15.
  4122.    
  4123.    Last modified: _6/13/1997_
  4124.    
  4125.   Category: /Commands_/export_exp_ex/
  4126.   
  4127.    " + "export", "exp", "ex""
  4128.    
  4129.     1. What is "export" for? 
  4130.     
  4131.    "export" checks out a copy of a module in a form intended for export
  4132.    outside the CVS environment. The "export" command produces the same
  4133.    directory and file structure as the "checkout" command, but it doesn't
  4134.    create "CVS" sub-directories and it removes all the RCS keywords from
  4135.    the files.
  4136.    
  4137.    Last modified: _6/13/1997_
  4138.    
  4139.     2. Why does it remove the RCS keywords so I can't use the "ident" command
  4140.     on the source files? 
  4141.     
  4142.    It removes the RCS keywords, so that if the recipient of the exported
  4143.    sources checks them into another set of RCS files (with or without
  4144.    CVS), and then makes modifications through RCS or CVS commands, the
  4145.    revision numbers that they had when you exported them will be
  4146.    preserved. (That ident no longer works is just an unfortunate side
  4147.    effect.)
  4148.    
  4149.    The theory is that you are exporting the sources to someone else who
  4150.    will make independent changes, and at some point you or they will want
  4151.    to know what revisions from your Repository they started with
  4152.    (probably to merge changes, or to try to decide whether to merge
  4153.    changes).
  4154.    
  4155.    A better way to handle this situation would be to give them their own
  4156.    branch of your Repository. They would need to remember to checkin the
  4157.    exported sources with RCS IDs intact (ci -k) so that their changes
  4158.    would get revision numbers from the branch, rather than starting at
  4159.    1.1 again. Perhaps a future version of CVS will provide a way to
  4160.    export sources this way.
  4161.    
  4162.                                 Contributed by Dan Franklin
  4163.  
  4164.    Last modified: _6/13/1997_
  4165.    
  4166.     3. Can I override the '-kv' flag CVS passes to RCS? 
  4167.     
  4168.    Not as of CVS version 1.4.
  4169.    
  4170.    Last modified: _6/13/1997_
  4171.    
  4172.     4. Why doesn't "export" have a '-k' flag like "import" does? 
  4173.     
  4174.    Export is intended for a specific purpose -- to remove all trace of
  4175.    revision control on the way *out* of CVS.
  4176.    
  4177.    Last modified: _6/13/1997_
  4178.    
  4179.     5. Why does "export -D" check out every file in the Attic? 
  4180.     
  4181.    See 5B.3 for an explanation of the same problem with "update".
  4182.    
  4183.    Last modified: _6/13/1997_
  4184.    
  4185.   Category: /Commands_/history_hi_his/
  4186.   
  4187.    " + "history", "hi", "his""
  4188.    
  4189.     1. What is "history" for? 
  4190.     
  4191.    To provide information difficult or impossible to extract out of the
  4192.    RCS files, such as a "tag" history or a summary of module activities.
  4193.    
  4194.    Last modified: _6/13/1997_
  4195.    
  4196.     2. Of what use is it? 
  4197.     
  4198.    I have found it useful in a number of ways, including:
  4199.    
  4200.      Providing a list of files changed since
  4201.    
  4202.    - A tagged release.
  4203.    - Yesterday, last Thursday, or a specific date.
  4204.    - Someone changed a specific file.
  4205.    
  4206.      Providing a list of special events:
  4207.    
  4208.    - Files added or removed since one of the above events.
  4209.    - Merge failures since one of the above events. (Where did the
  4210.    conflicts occur?)
  4211.    - Has anyone (and who) grabbed the revision of this file I committed
  4212.    last week, or are they still working blind?
  4213.    
  4214.      Telling me how often a file/directory/module has been changed.
  4215.    
  4216.      Dumping a summary of work done on a particular module, including who
  4217.    last worked on it and what changed.
  4218.    
  4219.      Displaying the checked-out modules and where they are being worked
  4220.    on.
  4221.    
  4222.      To tell me what users "joe" and "malcolm" have done this week.
  4223.    
  4224.    Last modified: _6/13/1997_
  4225.    
  4226.     3. What is this, Big Brother? 
  4227.     
  4228.                 War is Peace.
  4229.                 Freedom is Slavery.
  4230.                 Ignorance is Strength.
  4231.  
  4232.    Normally manager types and those with the power to play Big Brother
  4233.    don't care about this information. The Software Engineer responsible
  4234.    for integration usually wants to know who is working on what and what
  4235.    changed. Use your imagination.
  4236.    
  4237.    Last modified: _6/13/1997_
  4238.    
  4239.     4. I deleted my working directory and "history" still says I have it
  4240.     checked out. How do I fix it? 
  4241.     
  4242.    You can use "release -f" to forcibly add a "release" record to the
  4243.    history file for a working directory associated with a "module". If
  4244.    your version of "release" doesn't have the '-f' option, or you checked
  4245.    out the directory using a relative path, you have to edit the
  4246.    $CVSROOT/CVSROOT/history file.
  4247.    
  4248.    You can remove the last 'O' line in the history file referring to the
  4249.    module in question or add an 'F' record.
  4250.    
  4251.    Last modified: _6/13/1997_
  4252.    
  4253.     5. So I *can* edit the History file? 
  4254.     
  4255.    Yes, but if you are using history at all, you should take a little
  4256.    care not to lose information. I normally use Emacs on the file, since
  4257.    it can detect that a file has changed out from under it. You could
  4258.    also copy and zero out the history file, edit the copy and append any
  4259.    new records to the edited copy before replacing it.
  4260.    
  4261.    Last modified: _6/13/1997_
  4262.    
  4263.     6. Why does the history file grow so quickly? 
  4264.     
  4265.    It stores 'U' records, which come in handy sometimes when you are
  4266.    tracking whether people have updated each other's code before testing.
  4267.    There should (and probably will sometime) be a way to choose what
  4268.    kinds of events go into the history file.
  4269.    
  4270.    The contributed "cln_hist.pl" script will remove all the 'U' records,
  4271.    plus matching pairs of 'O' and 'F' records during your normal clean up
  4272.    of the history file.
  4273.    
  4274.    Last modified: _6/13/1997_
  4275.    
  4276.     7. What is the difference between "cvs history -r <tag/rev>" and "cvs
  4277.     history -t <tag>"? 
  4278.     
  4279.    The '-t' option looks for a Tag record stored by "rtag" in the history
  4280.    file and limits the search to dates after the last <tag> of the given
  4281.    name was added.
  4282.    
  4283.    The '-r' option was intended to search all files looking for the <tag>
  4284.    in the RCS files. It takes forever and needs to be rewritten.
  4285.    
  4286.    Last modified: _6/13/1997_
  4287.    
  4288.     8. Why does "cvs history -c -t <tag>" fail to print anything? 
  4289.     
  4290.    You have been using "tag" instead of "rtag". The "tag" command
  4291.    currently doesn't store a history record. This is another remnant of
  4292.    CVS's earlier firm belief in "modules". But it also has a basis in how
  4293.    "rtag" and "tag" were originally used.
  4294.    
  4295.    "rtag" was intended for large-scale tagging of large chunks of the
  4296.    Repository, an event work recording. "tag" was intended for adding and
  4297.    updating tags on a few files or directories, though it could also be
  4298.    used to tag the entire checked-out working tree when there is no
  4299.    module defined to match the tree or when the working tree is the only
  4300.    place where the right collection of revisions to tag can be found.
  4301.    
  4302.    Last modified: _6/13/1997_
  4303.    
  4304.     9. "cvs history -a -o" only printed one line for each checked-out module.
  4305.     Shouldn't it print all the directories where the modules are checked out? 
  4306.     
  4307.    Not as designed.
  4308.    
  4309.         Command                 Question it is supposed to answer.
  4310.         ----------------        ------------------------------------------
  4311.         cvs history -o          What modules do I have checked out?
  4312.         cvs history -a -o       <same for all users>
  4313.  
  4314.         cvs history -o -w       What working directories have I created
  4315.                                 and what modules are in them?
  4316.         cvs history -a -o -w    <same for every user>
  4317.  
  4318.    The -o option chooses the "checked out modules" report, which is the
  4319.    default history report.
  4320.    
  4321.    Last modified: _6/13/1997_
  4322.    
  4323.     10. I can't figure out "history", can you give me concrete examples? 
  4324.     
  4325.    Default output selects records only for the user who executes the
  4326.    "history" command. To see records for other users, add one or more "-u
  4327.    user" options or the '-a' option to select *all* users.
  4328.    
  4329.    To list (for the selected users): Type "cvs history" and:
  4330.    
  4331.    * Checked out modules: -o (the default)
  4332.    * Files added since creation: -x A
  4333.    * Modified files since creation: -c
  4334.    * Modified files since last Friday: -c -D 'last Friday'
  4335.    * Modified files since TAG was added: -c -t <tag>
  4336.    * Modified files since TAG on files: -c -r <tag>
  4337.    * Last modifier of file/Repository X? -c -l -[fp] X
  4338.    * Modified files since string "str": -c -b str
  4339.    * Tag history: (Actually "rtag".) -T
  4340.    * History of file/Repository/module X: -[fpn] X
  4341.    * Module report on "module": -m module
  4342.    
  4343.    Last modified: _6/13/1997_
  4344.    
  4345.     11. Can we merge history files when we merge Repositories? 
  4346.     
  4347.    Assuming that the two Repositories have different sets of pathnames,
  4348.    it should be possible to merge two history files by sorting them
  4349.    together by the timestamp fields.
  4350.    
  4351.    You should be able to run:
  4352.    
  4353.    sort +0.1 ${dir1}/history ${dir2}/history > history
  4354.    
  4355.    If you "diff" a standard history file before and after such a sort,
  4356.    you might see other differences caused by garbage (split lines, nulls,
  4357.    etc) in the file. If your Repository is mounted through NFS onto
  4358.    multiple machines you will also see a few differences caused by
  4359.    different clocks on different machines. (Especially if you don't use
  4360.    NTP to keep the clocks in sync.)
  4361.    
  4362.    Last modified: _6/13/1997_
  4363.    
  4364.   Category: /Commands_/import_im_imp/
  4365.   
  4366.    " + "import", "im", "imp""
  4367.    
  4368.     1. What is "import" for? 
  4369.     
  4370.    The "import" command is a fast way to insert a whole tree of files
  4371.    into CVS.
  4372.    
  4373.    The first "import" to a particular file within the Repository creates
  4374.    an RCS file with a single revision on the "Vendor branch." Subsequent
  4375.    "import"s of the same file within the Repository append a new revision
  4376.    onto the Vendor branch. It does not, as some seem to believe, create a
  4377.    new branch for each "import". All "imports" are appended to the single
  4378.    Vendor branch.
  4379.    
  4380.    If the file hasn't changed, no new revision is created -- the new
  4381.    "Release-Tag" is added to the previous revision.
  4382.    
  4383.    After the import is finished, files you have not changed locally are
  4384.    considered to have changed in the "Main line of development". Files
  4385.    you *have* changed locally must have the new Vendor code merged into
  4386.    them before they are visible on the "Main line".
  4387.    
  4388.                 See 4C.6 and 4C.15
  4389.  
  4390.    Last modified: _6/13/1997_
  4391.    
  4392.     2. How am I supposed to use "import"? 
  4393.     
  4394.    Create a source directory containing only the files you want to
  4395.    import. Make sure you clean up any cruft left over from previous
  4396.    builds or editing. You want to make sure that the directory contains
  4397.    only what you want to call "source" from which everything else is
  4398.    built.
  4399.    
  4400.    If this is not the first import from this "Vendor", you should also
  4401.    compare the output of "find . ! -name CVS -print | sort" executed both
  4402.    at the head of a checked out working directory and at the head of the
  4403.    sources to be imported. If you find any deleted or renamed files, you
  4404.    have to deal with them by hand. (See 4B.8 on renaming.)
  4405.    
  4406.    "cd" into your source directory and type:
  4407.    
  4408.             cvs import -m "Message" <repos> <Vendor-Tag> <Release-Tag>
  4409.  
  4410.    where <repos> is the relative directory pathname within the Repository
  4411.    that corresponds to the sources you are importing.
  4412.    
  4413.    You might also consider using the "-I !" option to avoid ignoring
  4414.    anything. It is easier to remove bogus files from the Repository than
  4415.    to create a sparse tree of the ignored files and rerun "import".
  4416.    
  4417.    For example, if the FSF, CVS, Make and I are still active in the year
  4418.    2015, I'll import version 89.53 of GNU make this way:
  4419.    
  4420.             cvs import -m "GNUmake V89.53" gnu/make GNU GNUMAKE_89_53
  4421.  
  4422.    See 3H.13 for more details.
  4423.    
  4424.    Last modified: _6/13/1997_
  4425.    
  4426.     3. Why does import put files on a branch? Why can't I work on the main
  4427.     trunk instead of a Vendor branch? 
  4428.     
  4429.    This was a Design choice. The Vendor branch is the way "import" deals
  4430.    with a Vendor release. It is a solution to the Engineering problem of
  4431.    how to merge multiple external releases of Vendor-supplied sources
  4432.    into your ongoing work. The Vendor releases are kept on a separate,
  4433.    special, "Vendor" branch and your work is kept on the RCS trunk. New
  4434.    Vendor releases are imported onto the Vendor branch and then merged
  4435.    into your work, if there is any, on the trunk.
  4436.    
  4437.    This way, you can use CVS to find out not only about your work, but
  4438.    you can also find out what the Vendor changed by diffing between two
  4439.    of the Release Tags you handed to "import".
  4440.    
  4441.    CVS was designed to work this way. If you use CVS in some other way,
  4442.    you should think carefully about what you are doing.
  4443.    
  4444.    Note that the CVS "Main Branch" and the RCS Main Trunk are not the
  4445.    same. Placing files on the Vendor Branch doesn't keep you from
  4446.    creating a development branch to work on.
  4447.    
  4448.    See Section 4C, on Branching.
  4449.    
  4450.    If you are not working with 3rd party (i.e. Vendor) sources, you can
  4451.    skip the "import" and avoid the Vendor branch entirely. It works just
  4452.    as well to move pre-existing RCS files into Repository directories.
  4453.    
  4454.    You can create a whole Repository tree by copying a directory
  4455.    hierarchy of normal source files directly into the Repository and
  4456.    applying CVS to it. Here's an idea you should *test* before using:
  4457.    
  4458.                 cd <your source tree>
  4459.                 set source = `pwd`
  4460.                 set module = xyzzy      <<== Your choice of directory name
  4461.                 mkdir $CVSROOT/$module
  4462.                 cd $CVSROOT/$module
  4463.                 (cd $source; tar cf - .) | tar xvpBf -
  4464.                 find . -type f -exec ci -t-Original. {} \;
  4465.  
  4466.    The RCS "ci" command, without -u or -l options, will turn your source
  4467.    file into an RCS (",v") and delete the original source.
  4468.    
  4469.    Last modified: _6/13/1997_
  4470.    
  4471.     4. Is there any way to import binary files? 
  4472.     
  4473.    If you configured CVS to use the GNU version of "diff" and "diff3",
  4474.    then you can import any kind of file.
  4475.    
  4476.    Binary files with RCS keywords in them are a problem, since you don't
  4477.    want them to expand.
  4478.    
  4479.    If the tree you are about to "import" is entirely filled with binary
  4480.    files, you can use the '-ko' option on "import". Otherwise, I would
  4481.    run the import normally, then fix the binary files as described below
  4482.    in 3H.5.
  4483.    
  4484.    See 4D.1 on Binary files.
  4485.    
  4486.    Last modified: _6/13/1997_
  4487.    
  4488.     5. Why does "import" corrupt some binary files? 
  4489.     
  4490.    The RCS "co" command, when it is invoked by a CVS "checkout" or
  4491.    "update" (or after a "commit") command, searches for and expands a
  4492.    list of keywords within the file. They are documented in the RCS "co"
  4493.    man page. Strings such as "$\Id$" (or "$\Id:"), or "$\Revision$" (or
  4494.    "$\Revision:") are altered to the include the indicated information.
  4495.    
  4496.    [[Note: The keywords should appear in the text without the '\'
  4497.    character I have inserted to *avoid* expansion here. The only real RCS
  4498.    keywords in this document are at the top of the file, where I store
  4499.    the Revision and Date.]]
  4500.    
  4501.    If RCS keyword strings show up in a binary file, they will be altered
  4502.    unless you set the '-ko' option on the RCS files to tell RCS to keep
  4503.    the original keyword values and not to expand new ones. After
  4504.    "import", you can set the '-ko' option this way:
  4505.    
  4506.                 cvs admin -ko <file>
  4507.                 rm <file>
  4508.                 cvs update <file>
  4509.  
  4510.    After an import that didn't use '-ko' (because the whole tree wasn't
  4511.    of binary files) you should fix up the binary files as described above
  4512.    before checking out any new copies of the files and before updating
  4513.    any working directories you checked out earlier.
  4514.    
  4515.    See 4D.1 on Binary files.
  4516.    
  4517.    Last modified: _6/13/1997_
  4518.    
  4519.     6. How do I retain the original $\Revision$ strings in the sources? 
  4520.     
  4521.    If you want to leave old RCS keywords as they are, you can use the
  4522.    '-ko' tricks described above.
  4523.    
  4524.    Last modified: _6/13/1997_
  4525.    
  4526.     7. I imported some files for the Yarg compiler that compiles files with a
  4527.     suffix of ".yarg" and whose comment prefix is "YARG> ". When I check them
  4528.     out, they will no longer compile because they have this junk in them. Why? 
  4529.     
  4530.         YARG>YARG>YARG>YARG>YARG>YARG>YARG>YARG>YARG>YARG>YARG>YARG>YARG>
  4531.         YARG> $\Log:
  4532.         # Revision 1.3  1998/03/03  00:16:16  bubba
  4533.         # What is 2+2 anyway?
  4534.         #
  4535.         # Revision 1.2  1998/03/03  00:15:15  bubba
  4536.         # Added scorekeeping.
  4537.         YARG>
  4538.         YARG>YARG>YARG>YARG>YARG>YARG>YARG>YARG>YARG>YARG>YARG>YARG>YARG>
  4539.  
  4540.    Well bubba, "Yarg" hasn't hit the big time yet. Neither RCS nor CVS
  4541.    know about your suffix or your comment prefix. So you have two
  4542.    choices:
  4543.    
  4544.      Check out the Yarg-less module, and tell all the files about your
  4545.    comment prefix. Visit each directory and type:
  4546.    
  4547.                 cvs admin -c"YARG> " *.yarg
  4548.  
  4549.    If *all* files in the whole directory tree are Yarg files, you can use
  4550.    this instead:
  4551.    
  4552.                 cvs admin -c"YARG> " .
  4553.  
  4554.    Then save any changes you made, remove all the "*.yarg" files and grab
  4555.    new copies from the Repository:
  4556.    
  4557.    rm *.yarg (or: find . -name '*.yarg' -exec rm {} ';') (or: find .
  4558.    -name '*.yarg' -print | xargs rm) (or: find . -name '*.yarg' -print0 |
  4559.    xargs -0 rm if you have spaces in filenames and the GNU find/xargs.)
  4560.    cvs update
  4561.    
  4562.    It might be faster to remove the whole directory and check it out
  4563.    again.
  4564.    
  4565.      Change the import.c file in the CVS sources and add the .yarg
  4566.    suffix, along with the "YARG> " comment prefix to the "comtable"
  4567.    array.
  4568.    
  4569.    If you ever plan to add new files with $\Log in them, you should also
  4570.    go into the RCS sources and make the same change in the table
  4571.    contained in the "rcsfnms.c" file.
  4572.    
  4573.    Then delete the imported files from the Repository and re-"import" the
  4574.    sources.
  4575.    
  4576.    Last modified: _6/13/1997_
  4577.    
  4578.     8. How do I make "import" save the timestamps on the original files? 
  4579.     
  4580.    Use "import -d" to save the current timestamps on the files as the RCS
  4581.    revision times.
  4582.    
  4583.    See 4D.8 for another aspect of file timestamps.
  4584.    
  4585.    Last modified: _6/13/1997_
  4586.    
  4587.     9. Why can't I "import" 3 releases on different branches? 
  4588.     
  4589.    I'll bet you typed something like this:
  4590.    
  4591.                 cd /src/blasto.v2
  4592.                 cvs import -b 1.1.2  VENDOR2 Version2
  4593.                 cd /src/blasto.v3
  4594.                 cvs import -b 1.1.3  VENDOR3 Version3
  4595.                 cd /src/blasto.v4
  4596.                 cvs import -b 1.1.4  VENDOR4 Version4
  4597.  
  4598.    This is wrong, or at least it won't help you much. You have created
  4599.    three separate Vendor branches, which is probably not what you wanted.
  4600.    
  4601.    Earlier versions of CVS, as described in Brian Berliner's Usenix
  4602.    paper, tried to support multiple Vendor branches on the theory that
  4603.    you might receive source for the *same* program from multiple vendors.
  4604.    It turns out that this is very rare, whereas the need to branch in
  4605.    *your* development, for releases and for project branches, is much
  4606.    greater.
  4607.    
  4608.    So the model now is to use a single vendor branch to contain a series
  4609.    of releases from the same vendor. Your work moves along on the Main
  4610.    Trunk, or on a CVS branch to support a real "branch in development".
  4611.    
  4612.    To set this up, you should type this instead of the above:
  4613.    
  4614.                 cd /src/blasto.v2
  4615.                 cvs import VENDOR Version2
  4616.                 cd /src/blasto.v3
  4617.                 cvs import VENDOR Version3
  4618.                 cd /src/blasto.v4
  4619.                 cvs import VENDOR Version4
  4620.  
  4621.    Last modified: _6/13/1997_
  4622.    
  4623.     10. What do I do if the Vendor adds or deletes files between releases? 
  4624.     
  4625.    Added files show up with no extra effort. To handle "removed" files,
  4626.    you should always compare the tree structure of the new release
  4627.    against the one you have in your Repository. If the Vendor has removed
  4628.    files since the previous release, go into a working directory
  4629.    containing your current version of the sources and "cvs remove"
  4630.    (followed by "cvs commit" to make it really take effect) each file
  4631.    that is no longer in the latest release.
  4632.    
  4633.    Using this scheme will allow you to "checkout" any version of the
  4634.    vendor's code, with the correct revisions and files, by using
  4635.    "checkout -r Version[234]".
  4636.    
  4637.    Renames are harder to find, since you have to compare file contents to
  4638.    determine that one has occurred. If you notice one, see 4B.8 on
  4639.    renaming files.
  4640.    
  4641.    Last modified: _6/13/1997_
  4642.    
  4643.     11. What about if the Vendor changes the names of files or directories, or
  4644.     rearranges the whole structure between releases? 
  4645.     
  4646.    Currently CVS can't handle this cleanly. It requires "renaming" a
  4647.    bunch of files or directories.
  4648.    
  4649.    See 4B.8 on "renaming" for more details.
  4650.    
  4651.    What I generally do is to close the Repository for a while and make
  4652.    changes in both the Repository and in a copy of the vendor release
  4653.    until the structure matches, then execute the import.
  4654.    
  4655.    If you ever have to check out and build an old version, you may have
  4656.    to use the new, or completely different Makefiles.
  4657.    
  4658.    Last modified: _6/13/1997_
  4659.    
  4660.     12. I thought "import" was for Vendor releases, why would I use it for code
  4661.     of my own? Do I have to use import? 
  4662.     
  4663.    For code you produce yourself, "import" is a convenience for fast
  4664.    insertion of whole trees. It is not necessary. You can just as easily
  4665.    create ",v" files using the RCS "ci" command and move them directly
  4666.    into the Repository.
  4667.    
  4668.    Other than the CVSROOT directory, the Repository consists entirely of
  4669.    directories of ",v" files. The Repository contains no other state
  4670.    information.
  4671.    
  4672.    See Section 4B, on Setting up and Managing the Repository.
  4673.    
  4674.    Last modified: _6/13/1997_
  4675.    
  4676.     13. How do I import a large Vendor release? 
  4677.     
  4678.    When the sum of the changes made by the Vendor and the changes made by
  4679.    local developers is small, "import" is not a big problem. But when you
  4680.    are managing a large Repository, any care taken up front will save you
  4681.    time later.
  4682.    
  4683.    First read the following, then, before executing "import", see the
  4684.    questions in Section 4C dealing with branch merges and Vendor branch
  4685.    merges.
  4686.    
  4687.      If this is not the first import of this code, before starting, rtag
  4688.    the whole directory you will be changing.
  4689.    
  4690.      The first step is to make sure the structure of the new files
  4691.    matches the structure of the current Repository.
  4692.    
  4693.    Run "find . -print | sort" on both trees and "diff" the output.
  4694.    
  4695.      Alter the "source" tree until the "diff" (of the list of filenames,
  4696.    not of the whole trees) shows that the directory structures are
  4697.    equivalent.
  4698.    
  4699.    The "comm" command, if you have it, can help figure out what has been
  4700.    added or deleted between releases.
  4701.    
  4702.      If they deleted any files, you can handle them cleanly with "cvs
  4703.    remove". The command "comm -23 files.old files.new" will show you a
  4704.    list of files that need to be removed.
  4705.    
  4706.    You should examine the list first to see if any have been renamed
  4707.    rather than simply deleted.
  4708.    
  4709.      If they renamed any files, see 4B.8 on renaming files.
  4710.    
  4711.      Remember to *SAVE* the output from the import command.
  4712.    
  4713.      When you have dealt with removed and renamed files, then you can
  4714.    execute the import:
  4715.    
  4716.    cd <new source>
  4717.            cvs import -I ! -m "Message" <repos> <VendorTag> <ReleaseTag>
  4718.  
  4719.    Where
  4720.    
  4721.    "-I !" is an optional argument that keeps "import" from ignoring
  4722.    files. The comparison of the "find" commands above will probably avoid
  4723.    the need for this, but it is easier to remove files from the
  4724.    Repository than to run a subset "import" to catch just the ignored
  4725.    files. [You might have to quote or backwhack the '!'.]
  4726.    
  4727.            Message      is the log message to be stored in the RCS files.
  4728.  
  4729.            <repos>      is a relative path to a directory within the
  4730.                         Repository.  The directory <new source> must be at
  4731.                         the same relative level within the new sources as
  4732.                         the <repos> you give is within the Repository.  (I
  4733.                         realize this is not obvious.  Experiment first.)
  4734.  
  4735.            <VendorTag>  is a Tag used to identify the Vendor who sent you
  4736.                         the files you are importing.  All "imports" into
  4737.                         the same <repos> *must* use the same VendorTag.
  4738.                         You can find it later by using the "log" command.
  4739.  
  4740.    <ReleaseTag> is a Tag used to identify the particular release of the
  4741.    software you are importing. It must be unique and should be mnemonic
  4742.    -- at least include the revision number in it. (Note: you can't use
  4743.    '.' characters in a Tag. Substitute '_' or '-'.)
  4744.    
  4745.      There will be six categories of files to deal with. (Actually there
  4746.    are eight, but you have already dealt with "removed" and "renamed"
  4747.    files.)
  4748.    
  4749.    If this is the first "import" into a given <repos> directory, only the
  4750.    first three of these ('I', 'L' and 'N') can occur.
  4751.    
  4752.      Ignored file.
  4753.    
  4754.    CVS prints: I filename
  4755.    
  4756.    You'll need to examine it to see if it *should* have been ignored. If
  4757.    you use "-I !", nothing will be ignored.
  4758.    
  4759.      Symbolic link.
  4760.    
  4761.    CVS prints: L linkname
  4762.    
  4763.    Links are "ignored", but you'll probably want to create a "checkout
  4764.    helper" function to regenerate them.
  4765.    
  4766.      New file.
  4767.    
  4768.    CVS prints: N filename
  4769.    
  4770.    CVS creates a new file in the Repository. You don't have to do
  4771.    anything to the file, but you might have to change Makefiles to refer
  4772.    to it if this is really a new file.
  4773.    
  4774.      A file unchanged by the Vendor since its last release.
  4775.    
  4776.    CVS prints: U filename
  4777.    
  4778.    CVS will notice this and simply add the new ReleaseTag to the latest
  4779.    rev on the Vendor branch.
  4780.    
  4781.    No work will be needed by you, whether you have changed the file or
  4782.    not. No one will notice anything.
  4783.    
  4784.      A file changed by the Vendor, but not by you.
  4785.    
  4786.    CVS prints: U filename
  4787.    
  4788.    CVS should add the file onto the vendor branch and attach the Release
  4789.    Tag to it.
  4790.    
  4791.    When you next execute "update" in any working directory you'll get the
  4792.    new revision.
  4793.    
  4794.      A file changed by both the Vendor and by you.
  4795.    
  4796.    CVS prints: C filename
  4797.    
  4798.    These are the trouble files. For each of these files (or in groups --
  4799.    I usually do one directory at a time), you must execute:
  4800.    
  4801.                     cvs update -j <PreviousReleaseTag> -j <ReleaseTag>
  4802.                 or
  4803.                     cvs update -j <VendorTag:yesterday> -j <VendorTag>
  4804.  
  4805.    It will print either 'M' (if no overlaps) or 'C', if overlaps. If a
  4806.    'C' shows up, you'll need to edit the file by hand.
  4807.    
  4808.    Then, for every file, you'll need to execute "cvs commit".
  4809.    
  4810.    See the part of Section 4C dealing with branch merges.
  4811.    
  4812.      If you are truly performing a large import, you will most likely
  4813.    need help. Managing those people is another problem area.
  4814.    
  4815.    Since the merge of the Vendor branch is just like any other merge, you
  4816.    should read section 4C for more info about performing and cleaning up
  4817.    merges.
  4818.    
  4819.    The larger the import, and the larger the group of people involved,
  4820.    the more often you should use "tag" and "rtag" to record even trivial
  4821.    milestones. See 4C.14, especially the "paranoid" section.
  4822.    
  4823.    Before starting the import, you should install and test a "commitinfo"
  4824.    procedure to record all commits in a file or via Email to a mail
  4825.    archive. Along with the tags you placed on the Repository before the
  4826.    import, this archive will help to track what was changed, if problems
  4827.    occur
  4828.    
  4829.    There are four stages to the recovery:
  4830.    
  4831.      Parcel out the work -- Effective Emacs Engineering.
  4832.    
  4833.    As input to the assignment process, you might want to examine the tree
  4834.    and record the last person who changed the file. You can also
  4835.    research, if you don't already know, who is expert in each area of the
  4836.    software.
  4837.    
  4838.    Examine the import log (you saved the output, right?), estimate how
  4839.    much work is involved in each area and assign groups of files to
  4840.    individual developers. Unless some directory is immense, it is easier
  4841.    to manage if you assign whole directories to one person.
  4842.    
  4843.    Keep a list. Suggest a completion date/time. Tell them to "commit" the
  4844.    file when they are finished with the merge. If you tagged the
  4845.    Repository before starting the import, you should have no trouble
  4846.    figuring out what happened.
  4847.    
  4848.    If you can, find out (or tell them) which working directory to use.
  4849.    You should verify that the working directory they use is on the Main
  4850.    Branch ("update -A") and without modified files.
  4851.    
  4852.    If you trust your crew, have them notify you by Email. Have them send
  4853.    you the output from "cvs update" in their working directory. You might
  4854.    have to poll some people until you are certain they have finished, or
  4855.    have given up. (This is not an invention. I've heard a false, "Yeah,
  4856.    sure. I finished yesterday," more times that you'd believe.)
  4857.    
  4858.    When all reports are in, go on to the Source Verification stage.
  4859.    
  4860.      Source Verification -- CVS and other Tools.
  4861.    
  4862.    If you didn't dictate which ones to use, find all working directories
  4863.    and run "cvs -n update" in all of them. The history command and the
  4864.    "commitinfo" log you set up might help to find checked out working
  4865.    directories.
  4866.    
  4867.    Sticky conflict flags will help, but they can't recover from
  4868.    sloppiness or incompetence. You might want to check everything out
  4869.    into a tree and grep for the parts of the merge conflict markers CVS
  4870.    doesn't look for. CVS looks for the string '^>>>>>>> '. The merge
  4871.    operation also puts '^<<<<<<< ' and '^======= ' markers in the file
  4872.    that careless developers might leave there.
  4873.    
  4874.    If you find problems simply by looking at the source files and working
  4875.    directories, start the flogging now. Resolving the textual conflicts
  4876.    is the easy part. Weed the turkeys out before reaching the next part
  4877.    of the cleanup -- the resolution of logical conflicts.
  4878.    
  4879.    Then apply a set of post-commit tags.
  4880.    
  4881.      Logical Verification -- Diff and powerful eyeballs.
  4882.    
  4883.    No source control system can solve the problem of resolving
  4884.    distributed conflicts in program logic. If you change the argument
  4885.    template for function A (defined in file A.c) and add new calls to
  4886.    function A from within function B (defined in file B.c) using the old
  4887.    argument format, you are outside the realm of CVS's competence.
  4888.    
  4889.    Assign someone to understand what the Vendor changed by running "cvs
  4890.    diff -c -r <PreviousReleaseTag> <ReleaseTag>", where the tags were
  4891.    those handed to the last two invocations of "import".
  4892.    
  4893.    Then have the same person compare that output (logically or you can
  4894.    actually diff the diffs) to the output of the similar "cvs diff -c -r
  4895.    <pre-import-tag> <post-commit-tag>". The two sets of differences
  4896.    should be almost identical. They should both show only the work *you*
  4897.    have performed.
  4898.    
  4899.      Product Verification -- Build and Test.
  4900.    
  4901.    Don't let your help off the hook until you verify that the merge
  4902.    actually produced something that can compile and pass tests. Compiling
  4903.    should really be part of the logical verification phase, but you
  4904.    should test the output of the build system before declaring victory
  4905.    and releasing the troops.
  4906.    
  4907.      After it is all built, apply another set of tags to mark the end of
  4908.    the "import process". You can delete the intermediate tags you added
  4909.    during source and logic testing, but keep the "pre-import" and
  4910.    "post-import" tags forever.
  4911.    
  4912.    Of course, experience can tell you when to skip a step. But I'd start
  4913.    out by considering each one as necessary unless you can prove
  4914.    otherwise.
  4915.    
  4916.    Last modified: _6/13/1997_
  4917.    
  4918.     14. Explain: ERROR: cannot create link to <file>: Permission denied 
  4919.     
  4920.    This error appears when you try to execute a second (or later)
  4921.    "import" into the same module from a directory to which you don't have
  4922.    write access.
  4923.    
  4924.    The "link error" is caused by a feature purposely added to speed up
  4925.    the import.
  4926.    
  4927.    Though the error message is somewhat strange, it indicates that
  4928.    "import" is supposed to be executed only in writable directories.
  4929.    
  4930.    Last modified: _6/13/1997_
  4931.    
  4932.     15. Where does the -m <message> go when the file doesn't change? 
  4933.     
  4934.    The <message> handed to import is used as an RCS log message, but only
  4935.    if the imported file changed since the last version on the Vendor
  4936.    branch. If the imported file hasn't changed, then no new revision is
  4937.    created. The <ReleaseTag> is still applied, but to the previous
  4938.    revision. So the Tags are still correct, but the message is lost.
  4939.    
  4940.    Maybe it should be appended to the previous log message. But currently
  4941.    it isn't.
  4942.    
  4943.    Last modified: _6/13/1997_
  4944.    
  4945.     16. How do I "import" just the files ignored by a previous "import"? 
  4946.     
  4947.    A real answer follows, but first, an editorial:
  4948.    
  4949.    I am now convinced that you should always use the "-I !" option.
  4950.    Removing a few extraneous files from the Repository is a lot easier
  4951.    than the recovery step described below.
  4952.    
  4953.    Let's assume your original import procedure was: (We assume there is
  4954.    enough disk space in /tmp.)
  4955.    
  4956.    cd <head-of-vendor-tree>
  4957.             cvs import -m 'xyz 1.3' gnu/xyz GNU GNUXYZ_1_3 | tee /tmp/IMP
  4958.  
  4959.    To import just the files ignored by "import", I would do this:
  4960.    
  4961.      Create a list of the ignored files to import:
  4962.    
  4963.    cd <head-of-vendor-tree> awk '/^I / {print $2}' /tmp/IMP | sed
  4964.    's|^gnu/xyz/||' > /tmp/IG [Edit the IG file to contain just the files
  4965.    you want.]
  4966.    
  4967.      Then create a sparse directory by handing your list to the GNU
  4968.    version of "tar", installed in many places as "gtar":
  4969.    
  4970.    mkdir /tmp/FIXUP gtar -T /tmp/IG -c -f - . | (cd /tmp/FIXUP; gtar xvBf
  4971.    -)
  4972.    
  4973.      Then rerun the import. Use the exact same command, but execute it in
  4974.    the sparse directory tree you just created. And this time, tell it not
  4975.    to ignore anything.
  4976.    
  4977.    cd /tmp/FIXUP
  4978.            cvs import -I ! -m 'xyz 1.3' gnu/xyz GNU GNUXYZ_1_3
  4979.  
  4980.    Last modified: _6/13/1997_
  4981.    
  4982.     17. Why did "import" ignore all the symlinks? 
  4983.     
  4984.    This is another design choice.
  4985.    
  4986.    Like the Unix "tar" command, "import" could sprout an option to follow
  4987.    symbolic links, but I don't think CVS will ever follow symbolic links
  4988.    by default.
  4989.    
  4990.    Two possible future enhancements have been seriously discussed:
  4991.    
  4992.      Treat symbolic links as data in its parent directory (the way
  4993.    ClearCase does) in some sort of per-directory control file.
  4994.    
  4995.      Treat symbolic links as version-controlled elements themselves,
  4996.    whose data is the value of readlink(2).
  4997.    
  4998.    For now, they are simply ignored.
  4999.    
  5000.    If you want to save and reconstruct symlinks, you might want to define
  5001.    a "checkout" or "update" program in the modules file which could
  5002.    consult a file kept under CVS in your working directory and make sure
  5003.    the specified links are in place.
  5004.    
  5005.    Last modified: _6/13/1997_
  5006.    
  5007.   Category: /Commands_/log_lo_rlog/
  5008.   
  5009.    " + "log", "lo", "rlog""
  5010.    
  5011.     1. What is "log" for? 
  5012.     
  5013.    To provide an interface to the RCS "rlog" command, which displays
  5014.    information about the underlying RCS files, including the revision
  5015.    history and Tag (RCS calls it a "symbol") list.
  5016.    
  5017.    Last modified: _6/13/1997_
  5018.    
  5019.     2. How do I extract the log entries between two revisions? 
  5020.     
  5021.    If both <rev1> and <rev2> are on the same branch, you can get what you
  5022.    are looking for with: (If they aren't on the same branch you'll either
  5023.    get an error or a display of the whole change log.)
  5024.    
  5025.                 cvs log -r<rev1>:<rev2> <file>
  5026.  
  5027.    If you want all the revisions on the branch from <rev1> to the end of
  5028.    the branch <rev1> is on, you can use:
  5029.    
  5030.                 cvs log -r<rev1>: <file>
  5031.  
  5032.    (If <rev1> is a numeric RCS symbol attached to a branch revision with
  5033.    an even number of '.'s in it, you get the whole branch.)
  5034.    
  5035.    If you want all the revisions on the branch from the beginning of the
  5036.    branch <rev2> is on up to revision <rev2>, you can use:
  5037.    
  5038.                 cvs log -r:<rev2> <file>
  5039.  
  5040.    Note: Depending on whether <rev1> and <rev2> are:
  5041.    
  5042.                         - numeric or symbolic
  5043.                         - in the file or not
  5044.                         - on the same branch or not
  5045.  
  5046.                 the RCS "rlog" (and therefore the "cvs log") command will
  5047.                 display some combination of:
  5048.  
  5049.                         - error messages
  5050.                         - (intuitively correct) partial log listings
  5051.                         - a display of the entire change log.
  5052.  
  5053.    Last modified: _6/13/1997_
  5054.    
  5055.     3. How do I extract the log entries on a whole branch? 
  5056.     
  5057.                 cvs log -r<rev> <file>
  5058.  
  5059.    where <rev> must be a branch revision (one with an even number of
  5060.    dots) or a *non-branch* tag on a branch revision. Non-branch tags on a
  5061.    branch revision are not normally attached by CVS, to add one you will
  5062.    have to explicitly tag a physical branch number within each file.
  5063.    Since these branch numbers are almost never the same in different
  5064.    files, this command is not all that useful.
  5065.    
  5066.    The intuitive command (at least from the CVS perspective):
  5067.    
  5068.                 cvs log -r<branch_tag> <file>
  5069.  
  5070.    does not work.
  5071.    
  5072.    Last modified: _6/13/1997_
  5073.    
  5074.     4. How do I generate ChangeLogs from RCS logs? 
  5075.     
  5076.    A program called rcs2log is distributed as part of GNU Emacs 19. A
  5077.    (possibly older) version of this program appears in the contrib
  5078.    directory of the cvs source tree.
  5079.    
  5080.    Last modified: _6/13/1997_
  5081.    
  5082.     5. Why does "log" tell me a file was committed exactly 5 hours later 
  5083.     
  5084.    than I know it was?
  5085.    
  5086.    I can tell by this question that you were working in a time zone that
  5087.    is 5 hours behind GMT (e.g. the U.S. East Coast in winter).
  5088.    
  5089.    RCS file dates are stored in GMT to allow users in different time
  5090.    zones to agree on the meaning of a timestamp. At first glance this
  5091.    doesn't seem necessary, but many companies use distributed file
  5092.    systems, such as NFS or AFS, across multiple timezones.
  5093.    
  5094.    Some standard form must be used. GMT, as the "grid origin", is an
  5095.    obvious candidate. The only other reasonable choice is to put the
  5096.    timezone information in all the time stamps, but that changes the RCS
  5097.    file format incompatibly, a step which has been avoided in the last
  5098.    few RCS releases.
  5099.    
  5100.    Last modified: _6/13/1997_
  5101.    
  5102.   Category: /Commands_/patch_pa_rdiff/
  5103.   
  5104.    " + "patch", "pa", "rdiff""
  5105.    
  5106.     1. What is "patch" for? 
  5107.     
  5108.    To produce a "diff" between tagged releases to be handed to the
  5109.    "patch" command at other sites. This is the standard way that source
  5110.    patches are distributed on the network.
  5111.    
  5112.    Last modified: _6/13/1997_
  5113.    
  5114.     2. Why does "patch" include files from the Attic when I use '-D'? 
  5115.     
  5116.    See the explanation of the same problem with "update -D" contained in
  5117.    section 5B.
  5118.    
  5119.    Last modified: _6/13/1997_
  5120.    
  5121.     3. How do I make "patch" produce a patch for one or two files? It seems to
  5122.     work only with modules. 
  5123.     
  5124.    Patch is intended for producing patches of whole modules between
  5125.    releases to be distributed to remote sites. Instead of "patch", you
  5126.    can use the "diff" command with the '-c' context option:
  5127.    
  5128.              cvs diff -c -r <rev/tag> -r <rev/tag> <file1> . . .
  5129.  
  5130.    The patch command will be able to merge such a "diff" into the remote
  5131.    source files.
  5132.    
  5133.    If you configured CVS to use a version of "diff" that supports the
  5134.    '-u' option, you can produce a more compact "patch" in "unidiff"
  5135.    format. The latest revisions of the patch command can parse and apply
  5136.    patches in "unidiff" format.
  5137.    
  5138.    Last modified: _6/13/1997_
  5139.    
  5140.   Category: /Commands_/release_re_rel/
  5141.   
  5142.    " + "release", "re", "rel""
  5143.    
  5144.     1. What is "release" for? 
  5145.     
  5146.    To register that a module is no longer in use. It is intended to
  5147.    reverse the effects of a "checkout" by adding a record to the history
  5148.    file to balance the checkout record and by optionally allowing you to
  5149.    delete the checked-out directory associated with the module name.
  5150.    
  5151.    Last modified: _6/13/1997_
  5152.    
  5153.     2. Why can't I reverse a "cvs checkout path/name/subdir" with a "cvs
  5154.     release path/name/subdir" without an "unknown module name"? 
  5155.     
  5156.    A simplistic implementation. (I can say this -- I wrote it.)
  5157.    
  5158.    The "release" function was written for CVS 1.2 under the assumption
  5159.    that the "module name" is a first class, unavoidable interface to the
  5160.    Repository, allowing no way to retrieve anything other than by module
  5161.    name. Though it is easier to program that way, many users of CVS
  5162.    believe the modules support to be too primitive to allow such a
  5163.    limitation.
  5164.    
  5165.    Since "release" was written, other parts of CVS broke that assumption.
  5166.    It needs to be revised.
  5167.    
  5168.    Last modified: _6/13/1997_
  5169.    
  5170.     3. Why can't I "release" portions of a checked out directory? I should be
  5171.     able to "release" any file or sub-directory within my working directory. 
  5172.     
  5173.    This isn't really a limitation in "release", per se. CVS doesn't try
  5174.    to keep track of which files in which directories are "checked out"
  5175.    and which are just lying there. You can delete directories and
  5176.    "update" will not bring them back unless you add a special "-d"
  5177.    option.
  5178.    
  5179.    In other words, CVS doesn't keep track of how you adjust the partition
  5180.    between files you consider part of your working set and files that
  5181.    were checked out because they are part of the same module or
  5182.    directory. And neither does "release".
  5183.    
  5184.    In future CVS releases, "release" might become sophisticated enough to
  5185.    handle both the reversal of a "checkout" and the deletion of random
  5186.    portions of the working directory, but it isn't that way now.
  5187.    
  5188.    Last modified: _6/13/1997_
  5189.    
  5190.     4. I removed the tree that I was about to start working on. How do I tell
  5191.     cvs that I want to release it if I don't have it anymore? 
  5192.     
  5193.    See 3G.4.
  5194.    
  5195.    Last modified: _6/13/1997_
  5196.    
  5197.     5. Why doesn't "release -d module" reverse a "checkout module"? 
  5198.     
  5199.    It does, if you are using "module" in a way that "release" expects: a
  5200.    non-alias string in the left column of the "modules" database.
  5201.    
  5202.    If "module" is really an alias, or if you are using a relative path in
  5203.    the place of "module", or if you renamed the directory with the -d
  5204.    option in the modules file or on the "checkout" command line, then the
  5205.    current version of "release" won't work.
  5206.    
  5207.    Future versions of "release" will probably fix most of these.
  5208.    
  5209.    Last modified: _6/13/1997_
  5210.    
  5211.     6. Why can't I release a module renamed with "cvs checkout -d"? 
  5212.     
  5213.    The current version of "release" doesn't know how to track the
  5214.    renaming option ('-d') of the "checkout" command. It will probably be
  5215.    fixed in the future.
  5216.    
  5217.    Last modified: _6/13/1997_
  5218.    
  5219.   Category: /Commands_/remove_rm_delete/
  5220.   
  5221.    " + "remove", "rm", "delete""
  5222.    
  5223.     1. What is "remove" for? 
  5224.     
  5225.    To remove a file from the working branch. It removes a file from the
  5226.    main branch by placing it in an "Attic" directory.
  5227.    
  5228.    Last modified: _6/13/1997_
  5229.    
  5230.     2. Why doesn't "remove" work on directories when it appears to try? 
  5231.     
  5232.    Oversight. It should be able to delete an empty directory, but you
  5233.    still don't have a way to remember when it was there and when it
  5234.    disappeared to allow the "-D " option to work.
  5235.    
  5236.    You'll have to remove the working directory and the matching directory
  5237.    in the Repository.
  5238.    
  5239.    Note that you want to do a _cvs remove dir_ in the working directory,
  5240.    do a cvs commit, and then do a _rmdir dir_ in the Repository.
  5241.    (msusrtsp.mark at eds dot com)
  5242.    
  5243.    Last modified: _12/18/1997_
  5244.    
  5245.     3. I don't like removing files. Is there another way to ignore them? 
  5246.     
  5247.    There's no reason to be hasty in using the "remove" command.
  5248.    
  5249.    If there is a way to ignore files in your build procedures, I'd just
  5250.    do that. Later, when you decide that the files are really ancient, you
  5251.    can execute a "remove" command to clean up.
  5252.    
  5253.    The CVS "ignore" concept can't ignore files already in CVS.
  5254.    
  5255.    Last modified: _6/13/1997_
  5256.    
  5257.     4. I just removed a file. How do I resurrect it? 
  5258.     
  5259.    If you executed "remove", but haven't typed "commit" (you can tell
  5260.    this by the 'R' notation that "update" prints next to the file), you
  5261.    can execute "add" to reverse the "remove".
  5262.    
  5263.    If you followed the "remove" with a "commit", you'll have to move it
  5264.    back out of the Attic by hand:
  5265.    
  5266.    I use something like this: (csh-like syntax)
  5267.    
  5268.                 set repos = `cat ./CVS/Repository`
  5269.                 mv $repos/Attic/filename,v $repos/filename,v
  5270.  
  5271.    (If you use relative paths in your Repository files, that first line
  5272.    becomes: set repos = $CVSROOT/`cat ./CVS/Repository`)
  5273.    
  5274.    While a file is in the Attic, you can't "add" another file by the same
  5275.    name. To add such a file you either have to move it by hand as in the
  5276.    above, or delete it from the Attic.
  5277.    
  5278.    The main reason for the Attic is to retain files with tags in them. If
  5279.    you execute: "update -r <oldtag>", files with <oldtag> attached to
  5280.    some revision will be taken from the normal Repository area and from
  5281.    the Attic. That's why you can't "add" a file with the same name.
  5282.    "remove" only moves a file off the main branch, it doesn't obliterate
  5283.    it.
  5284.    
  5285.    Last modified: _6/13/1997_
  5286.    
  5287.     5. Why doesn't "remove" delete the file? Instead, it prints an error
  5288.     message and tells me to remove the file by hand. 
  5289.     
  5290.    Design choice. Unix software written within last decade, usually
  5291.    requires an extra verification step, such as answering a question or
  5292.    adding a flag on the command line. CVS currently requires that you
  5293.    delete the file first unless you specify the '-f' (force) option,
  5294.    which deletes the file before performing "cvs remove".
  5295.    
  5296.    Last modified: _6/13/1997_
  5297.    
  5298.   Category: /Commands_/rtag_rt_rfreeze/
  5299.   
  5300.    " + "rtag", "rt", "rfreeze""
  5301.    
  5302.     1. What is "rtag" for? 
  5303.     
  5304.    To add a symbolic label (a "tag") to the last committed revisions of a
  5305.    module directly in the Repository.
  5306.    
  5307.    Last modified: _6/13/1997_
  5308.    
  5309.     2. Why use "rtag"? It assumes no one is changing the Repository. 
  5310.     
  5311.    Though the "tag" command is more useful in marking the revisions you
  5312.    have in a particular working directory, "rtag" is much handier for
  5313.    whole-Repository actions, which occur at major release boundaries.
  5314.    
  5315.    Last modified: _6/13/1997_
  5316.    
  5317.     3. What revision does "rtag -r <tag1> <tag2>" actually put the tag on? 
  5318.     
  5319.    In short, the '-r' option is another way to select the revision to
  5320.    tag. The revision is selected the same way for all commands that
  5321.    accept a "-r <tag/rev>" option.
  5322.    
  5323.    Depending on whether <tag1> is a <branch_tag>, or a non-branch <tag>
  5324.    and on whether you use the '-b' option to "rtag", you get four
  5325.    different results:
  5326.    
  5327.      rtag -r <tag1> <tag2>
  5328.    
  5329.    Adds the non-branch tag <tag2> to the same revision that the
  5330.    non-branch tag <tag1> is attached to.
  5331.    
  5332.    Example:
  5333.                 <tag1>          --> TT1
  5334.                 <tag2>          --> TT2
  5335.                 <file>          --> Symbols: TT1:1.4
  5336.                 After           --> Symbols: TT1:1.4,TT2:1.4
  5337.  
  5338.      rtag -r <branch_tag1> <tag2>
  5339.    
  5340.    Adds the non-branch tag <tag2> to the HEAD of (the highest revision
  5341.    number on) the branch labelled with tag <branch_tag1>.
  5342.    
  5343.    Example:
  5344.                 <branch_tag1>   --> BR1
  5345.                 <tag2>          --> TT2
  5346.                 <file>          --> Symbols: BR1:1.2.0.2 (1.2.2.5 is HEAD)
  5347.                 After           --> Symbols: BR1:1.2.0.2,TT2:1.2.2.5
  5348.  
  5349.    If the branch tagged by <branch_tag1> has not been created, then the
  5350.    tag shows up on the branch point revision:
  5351.    
  5352.    Example:
  5353.                 <branch_tag1>   --> BR1
  5354.                 <tag2>          --> TT2
  5355.                 <file>          --> Symbols: BR1:1.2.0.2 (No 1.2.X exists.)
  5356.                 After           --> Symbols: BR1:1.2.0.2,TT2:1.2
  5357.  
  5358.      rtag -b -r <tag1> <branch_tag2>
  5359.    
  5360.    Adds the magic branch tag <branch_tag2> to the revision that the
  5361.    non-branch tag <tag1> is attached to, preparing it to be a branch
  5362.    point.
  5363.    
  5364.    Example:
  5365.                 <tag1>          --> TT1
  5366.                 <branch_tag2>   --> BR2
  5367.                 <file>          --> Symbol: TT1:1.4
  5368.                 After           --> Symbol: TT1:1.4, BR2:1.4.0.2
  5369.  
  5370.      rtag -b -r <branch_tag1> <branch_tag2>
  5371.    
  5372.    Adds the magic branch tag <branch_tag2> to the revision at the HEAD of
  5373.    (the highest revision number on) the branch labelled with
  5374.    <branch_tag1>, preparing it to be a branch point.
  5375.    
  5376.    Example:
  5377.                 <branch_tag1>   --> BR1
  5378.                 <branch_tag2>   --> BR2
  5379.                 <file>          --> Symbol: BR1:1.2.0.2 (1.2.2.5 is HEAD)
  5380.                 After           --> Symbol: BR1:1.2.0.2,BR2:1.2.2.5.0.2
  5381.  
  5382.    If the branch tagged by <branch_tag1> has not been created, then the
  5383.    tag shows up as a second branch off the same branch point revision:
  5384.    
  5385.    Example:
  5386.                 <branch_tag1>   --> BR1
  5387.                 <tag2>          --> TT2
  5388.                 <file>          --> Symbols: BR1:1.2.0.2 (No 1.2.X exists.)
  5389.                 After           --> Symbols: BR1:1.2.0.2,TT2:1.2.0.4
  5390.  
  5391.    In all four cases above, if <tag2> already exists on the file, you get
  5392.    an error unless you specify the '-F' option.
  5393.    
  5394.    In all four cases, if <tag1> does not exist on the file, <tag2> is not
  5395.    added unless you specify the '-f' option.
  5396.    
  5397.    Last modified: _6/13/1997_
  5398.    
  5399.     4. What happens if the tags are the same in "rtag -r <tag> <tag>"? 
  5400.     
  5401.    Again, there are four cases depending on whether <tag> is a branch
  5402.    tag, or a non-branch tag and on whether you use the '-b' option to
  5403.    "rtag":
  5404.    
  5405.      rtag -r <tag> <tag>
  5406.    
  5407.    Is a no-op. It does nothing even with '-F' specified.
  5408.    
  5409.    If you add the '-f' option ("rtag -f -r <tag> <tag>"), then <tag> is
  5410.    attached to the latest revision on the Main Branch if the file does
  5411.    *not* already have <tag> on some revision.
  5412.    
  5413.    If the <tag> is already on the file, using "rtag -f" is still a no-op.
  5414.    
  5415.      rtag -r <branch_tag> <branch_tag>
  5416.    
  5417.    Produces an error, since the <branch_tag> is already on some revision
  5418.    of the file.
  5419.    
  5420.    But, "rtag -F -r <branch_tag> <branch_tag>" turns the magic branch tag
  5421.    into a non-branch tag.
  5422.    
  5423.    Symbols: BR1:1.4.0.2 becomes Symbols: BR1:1.4
  5424.    
  5425.      rtag -b -r <tag> <tag>
  5426.    
  5427.    Produces an error, since the <tag> is already on the file.
  5428.    
  5429.    But, "rtag -F -b -r <tag> <tag>" turns the non-branch tag into a magic
  5430.    branch tag.
  5431.    
  5432.    Symbols: BR1:1.4 becomes Symbols: BR1:1.4.0.2
  5433.    
  5434.      rtag -b -r <branch_tag> <branch_tag>
  5435.    
  5436.    Produces an error, since the <branch_tag> is already on the file.
  5437.    
  5438.    But, "rtag -F -b -r <branch_tag> <branch_tag>" increments the branch
  5439.    number. It essentially removes the branch and creates a new one by the
  5440.    same name.
  5441.    
  5442.    Symbols: BR1:1.2.0.4 becomes Symbols: BR1:1.2.0.6
  5443.    
  5444.    Last modified: _6/13/1997_
  5445.    
  5446.     5. Why doesn't "rtag -b -r <branch_tag1> <branch_tag2>" rename or duplicate
  5447.     a magic branch tag? 
  5448.     
  5449.    None of the "tag" or "rtag" options rename anything. They only apply
  5450.    (or, with the '-F' option, move) tags to specific revisions in the
  5451.    file.
  5452.    
  5453.    See 3M.[3-4] above for details of how it works.
  5454.    
  5455.    To rename a non-branch tag, see 3O.9. To rename a magic branch tag,
  5456.    see 4D.5
  5457.    
  5458.    Last modified: _6/13/1997_
  5459.    
  5460.   Category: /Commands_/status_st_stat/
  5461.   
  5462.    " + "status", "st", "stat""
  5463.    
  5464.     1. What is "status" for? 
  5465.     
  5466.    To display the status of files, including the revision and branch you
  5467.    are working on and the existence of "sticky" information.
  5468.    
  5469.    Last modified: _6/13/1997_
  5470.    
  5471.     2. Why does "status" limit the File: at the top to 17 characters? 
  5472.     
  5473.    Designed that way to line up with other data. You can find the whole
  5474.    filename in the line beginning with "RCS version:", which is not
  5475.    limited in length.
  5476.    
  5477.    Last modified: _6/13/1997_
  5478.    
  5479.     3. Why does it print "Sticky" lines when the values are "(none)"? 
  5480.     
  5481.    Oversight. It should probably elide lines without information.
  5482.    
  5483.    Last modified: _6/13/1997_
  5484.    
  5485.     4. Shouldn't the status "Needs Checkout" be "Needs Update"? 
  5486.     
  5487.    Probably.
  5488.    
  5489.    [[Did this show up in CVS 1.4?]]
  5490.    
  5491.    Last modified: _6/13/1997_
  5492.    
  5493.   Category: /Commands_/tag_ta_freeze/
  5494.   
  5495.    " + "tag", "ta", "freeze""
  5496.    
  5497.     1. What is "tag" for? 
  5498.     
  5499.    To add a symbolic label (a "tag") to the RCS files last checked out,
  5500.    updated or committed in a working directory.
  5501.    
  5502.    Last modified: _6/13/1997_
  5503.    
  5504.     2. What is the difference between "tag" and "rtag"? 
  5505.     
  5506.    The end result of both commands is that a <tag>, or symbolic name, is
  5507.    attached to a single revision in each of a collection of files.
  5508.    
  5509.    The differences lie in:
  5510.    
  5511.      The collection of files they work on.
  5512.    
  5513.    "rtag" works on the collection of files referred to by a "module" name
  5514.    as defined in the "modules" file, or a relative path within the
  5515.    Repository.
  5516.    
  5517.    "tag" works on files and directories specified on the command line
  5518.    within the user's working directory. (Default is '.')
  5519.    
  5520.    Both commands recursively follow directory hierarchies within the
  5521.    named files and directories.
  5522.    
  5523.      The revisions they choose to tag.
  5524.    
  5525.    "rtag" places a tag on the latest committed revision of each file on
  5526.    the branch specified by the '-r' option. By default it tags the Main
  5527.    Branch.
  5528.    
  5529.    "tag" places a tag on the BASE (i.e. last checked out, updated or
  5530.    committed) revision of each file found in the working directory. (The
  5531.    BASE revision of a file is the one stored in the ./CVS/Entries file.)
  5532.    
  5533.      A different set of command line options.
  5534.    
  5535.    For example, "rtag" takes a "-r <oldtag>" option to retag an existing
  5536.    tag. The "tag" command does not.
  5537.    
  5538.      How it is logged.
  5539.    
  5540.    Currently "rtag" records the <tag> and the module in the "history"
  5541.    file, while "tag" does not.
  5542.    
  5543.    Last modified: _6/13/1997_
  5544.    
  5545.     3. Why does "tag -b" not put a tag on the Branch Point revision? How do I
  5546.     refer to the Branch Point? 
  5547.     
  5548.    This is probably an oversight, or a disbelief in the need for it. If
  5549.    everything works perfectly, the "update -j" command will do the merge
  5550.    you need and you don't need to check up on it by playing with the
  5551.    branch point revision.
  5552.    
  5553.    The '-b' option attaches a magic branch tag to allow CVS later to
  5554.    figure out the branch point. The actual revision that <tag> is
  5555.    attached to does not exist. References to the branch tag are
  5556.    equivalent to references to the latest revision on the branch.
  5557.    
  5558.    There is no way to refer to the branch point without adding a
  5559.    non-branch tag. You might want to add non-branch tags as a habit and
  5560.    add branch tags later, possibly immediate after adding the non-branch
  5561.    tag. See 4C.3 on Creating a Branch.
  5562.    
  5563.    Last modified: _6/13/1997_
  5564.    
  5565.     4. So "{r}tag" labels a bunch of files. What do you use a Tag for? 
  5566.     
  5567.    You use it to "checkout" the labeled collection of files as a single
  5568.    object, referring to it by name.
  5569.    
  5570.    Anywhere a revision number can be used a Tag can be used. In fact tags
  5571.    are more useful because they draw a line through a collection of
  5572.    files, marking a development milestone.
  5573.    
  5574.    The way to think about a Tag is as a curve drawn through a matrix of
  5575.    filename vs. revision number. Consider this:
  5576.    
  5577.    Say we have 5 files (in some arbitrary modules, some may be in 2 or
  5578.    more modules by name, some may be in 2 or more modules because of the
  5579.    Repository tree structure) with the following revisions:
  5580.    
  5581.                 file1   file2   file3   file4   file5
  5582.  
  5583.                 1.1     1.1     1.1     1.1  /--1.1*      <-*-  <tag>
  5584.                 1.2*-   1.2     1.2    -1.2*-
  5585.                 1.3  \- 1.3*-   1.3   / 1.3
  5586.                 1.4          \  1.4  /  1.4
  5587.                               \-1.5*-   1.5
  5588.                                 1.6
  5589.  
  5590.    At some time in the past, the '*' versions were tagged. Think of the
  5591.    <tag> as a handle attached to the curve drawn through the tagged
  5592.    revisions. When you pull on the handle, you get all the tagged
  5593.    revisions. Another way to look at it is that you draw a straight line
  5594.    through the set of revisions you care about and shuffle the other
  5595.    revisions accordingly. Like this:
  5596.    
  5597.                 file1   file2   file3   file4   file5
  5598.  
  5599.                                 1.1
  5600.                                 1.2
  5601.                         1.1     1.3                       _
  5602.                 1.1     1.2     1.4     1.1              /
  5603.                 1.2*----1.3*----1.5*----1.2*----1.1     (--- <-- Look here
  5604.                 1.3             1.6     1.3              \_
  5605.                 1.4                     1.4
  5606.                                         1.5
  5607.  
  5608.    I find that using these visual aids, it is much easier to understand
  5609.    what a <tag> is and what it is useful for.
  5610.    
  5611.    Last modified: _6/13/1997_
  5612.    
  5613.     5. How do I get "tag" and "rtag" to send mail the way "commit" does? 
  5614.     
  5615.    The "commit" command is supported by two files ("commitinfo" and
  5616.    "loginfo") not used by other commands. To do logging the same way for
  5617.    "tag" and "rtag" would require another file like loginfo, which
  5618.    currently doesn't exist.
  5619.    
  5620.    The "rtag" command requires a "module" entry, which can specify a
  5621.    "tag" program using the "-t programname" option on the module line.
  5622.    
  5623.    There is no equivalent support for "tag".
  5624.    
  5625.    Last modified: _6/13/1997_
  5626.    
  5627.     6. Why can't "tag" handle the '-r' option that "rtag" takes? 
  5628.     
  5629.    Oversight. The answer is probably "Fixed in a Future Release."
  5630.    
  5631.    Last modified: _6/13/1997_
  5632.    
  5633.     7. After a "tag <tag>" in my working directory, why doesn't "checkout -r
  5634.     <tag>" somewhere else produce copies of my current files? 
  5635.     
  5636.    The only reason this would fail, other than misspelling the <tag>
  5637.    string, is that you didn't "commit" your work before "tagging" it.
  5638.    Only committed revisions may be tagged. Modified files are not marked
  5639.    for later tagging.
  5640.    
  5641.    Last modified: _6/13/1997_
  5642.    
  5643.     8. Why doesn't "tag" write a history record the way "rtag" does? 
  5644.     
  5645.    The "rtag" command was originally intended to place major "release"
  5646.    tags onto modules. The "tag" functionality was developed to *move* the
  5647.    more significant tag when slight changes to individual files sneaked
  5648.    in after the release tag was stamped onto the Repository.
  5649.    
  5650.    The significant event was the "rtag", which was recorded in the
  5651.    "history" file for the "history -T" option to work.
  5652.    
  5653.    It turns out that "tag" is generally more useful than "rtag", so the
  5654.    model has changed. Future revisions of CVS will probably store both
  5655.    kinds of tags in the history file.
  5656.    
  5657.    Last modified: _6/13/1997_
  5658.    
  5659.     9. How do I rename a <tag>? 
  5660.     
  5661.    For a procedure to rename a branch tag, See section 4D.5 The following
  5662.    covers only non-branch tags.
  5663.    
  5664.    First, pick a <newtag> that is not in use. You could reuse (i.e. move)
  5665.    an existing tag to the new revisions using the '-F' option, but that
  5666.    will confuse matters when both tags are not already on a file. (It
  5667.    will probably confuse "rtag -f" too.)
  5668.    
  5669.    Use "rtag" to place <newtag> only on revisions attached to <oldtag> in
  5670.    the whole Repository, then delete the old one.
  5671.    
  5672.                 cvs rtag -r <oldtag> <newtag> world
  5673.                 cvs rtag -d <oldtag> world.
  5674.  
  5675.    You can also checkout or update your working directory to the <oldtag>
  5676.    and "tag" rather than "rtag" the result. But that will take longer and
  5677.    it has the chance of producing conflicts.
  5678.    
  5679.                 cvs update -r <oldtag>
  5680.                 cvs tag <newtag>
  5681.                 cvs tag -d <oldtag>
  5682.                 cvs update -A  (or cvs update -r <previous_tag>)
  5683.  
  5684.    Last modified: _6/13/1997_
  5685.    
  5686.   Category: /Commands_/update_up_upd/
  5687.   
  5688.    " + "update", "up", "upd""
  5689.    
  5690.     1. What is "update" for? 
  5691.     
  5692.    The "update" command is by far the most important command and is
  5693.    probably also the most used command.
  5694.    
  5695.    It has five purposes: (And many options.)
  5696.    
  5697.      To display the status of your working files.
  5698.    
  5699.    Though a plain "update" also displays the status, it does so after
  5700.    possibly altering your working directory. To see the status of your
  5701.    working files without changing anything, type:
  5702.    
  5703.                 cvs -n update {optional list of files}
  5704.  
  5705.      To merge changes made by others to the branch you are working on
  5706.    into your working files.
  5707.    
  5708.    Each working directory is attached to a branch, usually the Main
  5709.    branch. To merge changes made on your working branch since your last
  5710.    checkout, update or commit, type:
  5711.    
  5712.    cvs update {optional list of files}
  5713.    
  5714.      To merge changes made on another branch into the branch you are
  5715.    working on (your "working branch").
  5716.    
  5717.    If you want to grab a whole branch, from the branch point, which is
  5718.    assumed to be on the Main Branch, to the end of the branch, you type:
  5719.    
  5720.                 cvs update -j <branch_tag> {optional files}
  5721.  
  5722.    If you want to grab the changes made between two tags or revisions,
  5723.    you type:
  5724.    
  5725.                 cvs update -j <tag1> -j <tag2> {optional files}
  5726.  
  5727.    (If you are working with a single file, the Tags could also be
  5728.    revisions numbers. Unless you take great care to match revision
  5729.    numbers across different files (a waste of time given the way Tags
  5730.    work), using revision numbers in place of the Tags for multiple files
  5731.    would be meaningless.)
  5732.    
  5733.      To move your working directory to another branch.
  5734.    
  5735.    A working directory is presumed to be attached to (or working on) a
  5736.    particular branch, usually the Main branch. To alter what CVS believes
  5737.    to be your working branch, you "move" to that branch.
  5738.    
  5739.    To move to a tagged branch, type:
  5740.    
  5741.                 cvs update -r <branch_tag> {optional files}
  5742.  
  5743.    To move to the Main Branch, type:
  5744.    
  5745.                 cvs update -A {optional files}
  5746.  
  5747.    If you have modified files in your working directory, this is not a
  5748.    clean move. CVS will attempt to merge the changes necessary to make it
  5749.    look like you made the same changes to the new branch as you made in
  5750.    the old one. But if you do this twice without resolving the merge
  5751.    conflicts each time, you can lose work.
  5752.    
  5753.      To retrieve old revisions of files.
  5754.    
  5755.    This option is similar to 4 above but you are not restricted to using
  5756.    a <branch_tag>. You may specify any revision or <tag> with '-r' and
  5757.    get the specified revision or the tagged revision:
  5758.    
  5759.                 cvs update -r <tag/rev> {optional files}
  5760.  
  5761.    Or you may specify any date with '-D':
  5762.    
  5763.                 cvs update -D <date> {optional files}
  5764.  
  5765.    The '-p' option sends the revisions to standard output (normally your
  5766.    terminal) rather than setting the "sticky" tag and changing the files.
  5767.    
  5768.    Last modified: _6/13/1997_
  5769.    
  5770.     2. What do 'U', 'M' and 'C' mean when I type "update"? Are they different
  5771.     for "cvs -n update"? 
  5772.     
  5773.    "cvs update" merges changes made to the Repository, since your last
  5774.    "checkout", "update" or "commit", into your working files. You can
  5775.    think of it as changing your BASE revision.
  5776.    
  5777.    "cvs update" prints lines beginning with:
  5778.    
  5779.    'U' after replacing your unmodified file with a different
  5780.                 revision from the Repository.
  5781.  
  5782.    'M' for two different reasons:
  5783.    
  5784.      for files you have modified that have not changed in the Repository.
  5785.    
  5786.      after a merge, if it detected no conflicts.
  5787.    
  5788.    'C' after a merge, if it detected conflicts. See 2D.7 and 3P.6 for
  5789.    more info on conflict resolution and "sticky conflicts."
  5790.    
  5791.    "cvs -n update" shows what it *would* do, rather than doing it. Or,
  5792.    another way of looking at it, "cvs -n update" displays the
  5793.    relationship between your current BASE revisions (identified in your
  5794.    ./CVS/Entries file) and the HEAD revisions (the latest revisions in
  5795.    the Repository).
  5796.    
  5797.    "cvs -n update" prints lines beginning with:
  5798.    
  5799.    'U' for files you have not modified that have changed in the
  5800.    Repository.
  5801.    
  5802.    'M' for files you have modified that have not changed in the
  5803.    Repository.
  5804.    
  5805.    'C' for files you have modified that have also been changed in the
  5806.    Repository.
  5807.    
  5808.    See 4C.6 for what the letters mean when merging in from another
  5809.    branch. The output is almost the same for a normal update if you
  5810.    consider the Repository as the branch and your working directory as
  5811.    the "trunk".
  5812.    
  5813.    Last modified: _6/13/1997_
  5814.    
  5815.     3. What's the difference between "update" and "checkout"? 
  5816.     
  5817.    See 3C.4 above.
  5818.    
  5819.    Last modified: _6/13/1997_
  5820.    
  5821.     4. Why don't I get new files when I execute "update"? 
  5822.     
  5823.    There are six reasons for nothing to happen during an "update":
  5824.    
  5825.      Nothing on your branch changed in the Repository.
  5826.    
  5827.    If no one has committed anything to the branch you are working on
  5828.    (normally the Main branch) since the last time you executed
  5829.    "checkout", "update" or "commit", nothing will happen.
  5830.    
  5831.    It's like shouting "xyzzy" or "plugh" in the wrong room.
  5832.    
  5833.      You have a "sticky" non-branch <tag> or <date> attached to the
  5834.    working files you are trying to "update".
  5835.    
  5836.    At some time in the past you checked out or updated your directory
  5837.    with the "-r <tag>" or "-D <date>" option. Until you do it again with
  5838.    a different tag or date, or go back to the Main Branch with "update
  5839.    -A", you will never again see any updates.
  5840.    
  5841.      The ./CVS/Entries.Static file exists and you are expecting a new
  5842.    file.
  5843.    
  5844.    If your ./CVS administrative directory contains a file named
  5845.    Entries.Static, no files will be checked out that aren't already in
  5846.    the Entries or Entries.Static file.
  5847.    
  5848.      You forgot to use the '-d' option and are looking for new
  5849.    directories.
  5850.    
  5851.    If you execute "update" without the '-d' option, it will not create
  5852.    new directories that have been added to the Repository.
  5853.    
  5854.      You typed "update" instead of "cvs update".
  5855.    
  5856.    On most Unix systems, your disk caches are now furiously being flushed
  5857.    by multiple update daemons, destroying performance and proving to
  5858.    management that you need more CPU power. :-)
  5859.    
  5860.    On HP systems you might be asked what package you want to install from
  5861.    the "update server".
  5862.    
  5863.      Someone removed (using "admin -o") your BASE revision (the revision
  5864.    CVS thought you had in your working directory), then committed a
  5865.    "replacement". CVS is now confused because the revision in the
  5866.    Repository matches your BASE revision when the files themselves don't
  5867.    match. See 3B.6.
  5868.    
  5869.    Last modified: _6/13/1997_
  5870.    
  5871.     5. Why does "update" say 'M' both for plain modified files and for
  5872.     successful (i.e. conflict-free) merges? Aren't they different? 
  5873.     
  5874.    A design choice. Yes, they are different internally, but that
  5875.    shouldn't matter. Your files are in the same condition after the
  5876.    "update" as they were before -- a "diff" will display only your
  5877.    modifications. And you are expected to continue onward with parts two
  5878.    and three of the normal development cycle: "emacs" (a synonym for
  5879.    "edit" in most of the civilized world) and "commit".
  5880.    
  5881.    Last modified: _6/13/1997_
  5882.    
  5883.     6. What's a "sticky conflict"? How does it know a conflict occurred? 
  5884.     
  5885.    When a "cvs update" (or an "update -j") creates a conflict, it prints
  5886.    a 'C' and stores the timestamp of the file after the merge in a
  5887.    special field in the ./CVS/Entries file.
  5888.    
  5889.    This conflict indication implies that the merge command altered your
  5890.    working file to contain conflict markers surrounding the overlapping
  5891.    code segments. For example, say that
  5892.    
  5893.    - Two developers acquire revision 1.2 of <file> via "checkout" or
  5894.    "update".
  5895.    
  5896.    - Developer A changes line 1 from "9999" to "5555", then commits the
  5897.    file, creating revision 1.3.
  5898.    
  5899.    - Developer B changes line 1 from "9999" to "7777", then tries to
  5900.    commit the file, but is blocked because the file is not up to date.
  5901.    Developer B then runs "update" and sees the conflict marker 'C'. The
  5902.    beginning of the file would look like this:
  5903.    
  5904.    <<<<<<< <file> The working <file> in question.
  5905.             7777                Change made to the working <file>.
  5906.             =======
  5907.             5555                Change made in the first commit (1.3)
  5908.             >>>>>>> 1.3         The revision created by the first commit.
  5909.  
  5910.    The conflict is "sticky", which means that until the conflict is
  5911.    cleared, the "update" command will continue to display the file's
  5912.    status as 'C' and the "status" command will show the file's status as
  5913.    "Unresolved Conflict".
  5914.    
  5915.    Until the conflict is cleared, "commit" is blocked for this file.
  5916.    
  5917.    The sticky conflict indicator can be cleared by:
  5918.    
  5919.      Resolving the conflict by editing the file. Two things must happen
  5920.    before the conflict is considered resolved:
  5921.    
  5922.    The timestamp of the file must change. *and* The file must contain no
  5923.    conflict markers. (The string searched for in the file is the regexp:
  5924.    "^>>>>>>> ".)
  5925.    
  5926.    After clearing the sticky conflict indicator, you may then commit the
  5927.    file normally.
  5928.    
  5929.      Removing the file and running "update". This throws away the local
  5930.    changes and accepts the latest committed file on this branch. No
  5931.    commit is needed.
  5932.    
  5933.      Forcing the commit to happen by using "commit -f". This is probably
  5934.    a mistake since there are few lines of real text that begin with
  5935.    ">>>>>>> ".
  5936.    
  5937.    Last modified: _6/13/1997_
  5938.    
  5939.     7. Is there a feature to tell me what I have changed, added and removed
  5940.     without changing anything? 
  5941.     
  5942.    The command "cvs -n update" will do exactly that.
  5943.    
  5944.    Last modified: _6/13/1997_
  5945.    
  5946.     8. Why were all my files deleted when I executed "update"? 
  5947.     
  5948.    You probably executed "update -r <tag>" some time ago, then removed
  5949.    <tag> from the Repository files. "update -r <tag>" will delete a file
  5950.    that doesn't contain <tag>.
  5951.    
  5952.    A way to fix this is to "cd" into your working directory and type:
  5953.    
  5954.                 cvs update -A
  5955.  
  5956.    If you don't want the latest revisions on the Main (or Vendor) Branch,
  5957.    then decide what Tag (normal or branch) you want and type:
  5958.    
  5959.                 cvs update -r <the_tag_you_want>
  5960.  
  5961.    Another way to make a file disappear is to execute "update -D <date>"
  5962.    where <date> is before the date stamped onto the first revision in the
  5963.    RCS file.
  5964.    
  5965.    Last modified: _6/13/1997_
  5966.    
  5967.   Category: /Past__Future_/
  5968.   
  5969.    " Past & Future "
  5970.    
  5971.   Category: /Past__Future_/Bugs_and_Patches/
  5972.   
  5973.    " + Bugs and Patches"
  5974.    
  5975.     1. Why can't CVS handle deletion of directories? 
  5976.     
  5977.    An oversight, probably. [[Fixed in a future release?]]
  5978.    
  5979.    Last modified: _6/13/1997_
  5980.    
  5981.     2. Why can't CVS handle the moving of sources from one place in the 
  5982.     
  5983.    directory hierarchy to another?
  5984.    
  5985.    A "renaming database" has been proposed to track the history of
  5986.    pathname changes in the Repository. A general solution is a difficult
  5987.    problem. See 4B.8.
  5988.    
  5989.    Last modified: _6/13/1997_
  5990.    
  5991.     3. When I typed "cvs update -D <date>", why did it check out all 
  5992.     
  5993.    sorts of ancient files from the Attic? Shouldn't it just create the
  5994.    set of files and revisions that existed at that date?
  5995.    
  5996.    This seems to be a bug, but is really the lack of any obvious place to
  5997.    store the date when a file is "removed".
  5998.    
  5999.    There are four ranges of dates that CVS has to deal with when trying
  6000.    to determine what revision was available on <date>:
  6001.    
  6002.      Dates before the earliest revision in the file.
  6003.    
  6004.      Dates between any two revisions in the file.
  6005.    
  6006.      Dates between the latest revision in the file and the date when the
  6007.    file was moved to the Attic by "commit".
  6008.    
  6009.      Dates after moving the file to the Attic.
  6010.    
  6011.    Since the date when a file is moved to the Attic is not stored
  6012.    anywhere, CVS can't tell the difference between #3 and #4. To avoid
  6013.    not producing a file that should exist in case #3, it produces
  6014.    extraneous files in case #4.
  6015.    
  6016.    For the above reason, if you have removed files in the Attic, it is
  6017.    better to use "-r <tag>, or even "-r HEAD" than to use a date spec.
  6018.    
  6019.    If you must use "-D <date>", then you should either archive and delete
  6020.    Attic files (losing some past history) or construct your Makefiles to
  6021.    work with an explicit list of files and let the old source files stay
  6022.    in the working directory. The contents of the revision-controlled
  6023.    Makefile can then be considered to contain deletion "information".
  6024.    
  6025.    Last modified: _6/13/1997_
  6026.    
  6027.     4. When I typed "cvs update -D <date>" in my branch, why did it screw up
  6028.     all my files? 
  6029.     
  6030.    Currently, the internal routine ("version_ts") that looks up info
  6031.    about a file, overrides both the tag and date if *either* the tag or
  6032.    date is specified on the command line. If only the date is specified,
  6033.    it should not override a branch tag, but it does.
  6034.    
  6035.    In CVS 1.3, the documented "-D <branch_tag>:<date>" syntax only works
  6036.    with the Main Branch and the Vendor Branch.
  6037.    
  6038.    [[Is this fixed in CVS 1.4? This is one item I didn't check.]]
  6039.    
  6040.    Last modified: _6/13/1997_
  6041.    
  6042.     5. When I executed "checkout" into an existing directory I got "No such
  6043.     file or directory" errors. Why? 
  6044.     
  6045.    Though the man page says that "checkout" turns into an "update -d" in
  6046.    directories that already exist, it is referring to directories that
  6047.    already exist *and* were created by CVS.
  6048.    
  6049.    When you try to run "checkout" on top of an existing directory
  6050.    structure, some of which wasn't created by CVS, it will handle
  6051.    directories and non-CVS files within directories already under CVS,
  6052.    but it will display the above error on non-CVS files within non-CVS
  6053.    directories.
  6054.    
  6055.    Last modified: _6/13/1997_
  6056.    
  6057.     6. Why does "update" send all output to the terminal after 26 files have
  6058.     been updated? 
  6059.     
  6060.    CVS uses the "tmpnam()" function to generate temporary file names. The
  6061.    ANSI standard for the "tmpnam()" function says:
  6062.    
  6063.    "The tmpnam function generates a different string each time it is
  6064.    called, up to TMP_MAX times. If it is called more than TMP_MAX times,
  6065.    the behavior is implementation defined."
  6066.    
  6067.    Later it says that the value of "TMP_MAX shall be at least 25."
  6068.    
  6069.    On some platforms, the above specification is taken literally by
  6070.    turning "at least 25" into "exactly 26" and by doing something foolish
  6071.    (i.e. "implementation defined") after that. Some systems return the
  6072.    same name repeatedly, which causes one form of trouble. Others return
  6073.    NULL or garbage, which causes a different form of trouble.
  6074.    
  6075.    The broken systems appear to be cycling a single character through the
  6076.    alphabet. SunOS cycles 3 characters through the alphabet, so it won't
  6077.    cause trouble until 26 cubed or 17576 calls to "tmpnam()".
  6078.    
  6079.    Since CVS doesn't depend on the exact format of the tmp files, the
  6080.    workaround is to provide a "tmpnam()" that doesn't have a limit on the
  6081.    number of calls to it.
  6082.    
  6083.    Last modified: _6/13/1997_
  6084.    
  6085.     7. Why does the merge occasionally resurrect lines of code? 
  6086.     
  6087.    The diff3 program provided by GNU diff version 1.15 has a bug that
  6088.    occasionally causes text to come back from the dead.
  6089.    
  6090.    This is an old problem which you can avoid by upgrading to the latest
  6091.    GNU "diffutils" package. If you were using GNU diff version 1.15 and
  6092.    plan to upgrade to the latest GNU diff program, see the next question.
  6093.    
  6094.    Last modified: _6/13/1997_
  6095.    
  6096.     8. Why does the merge fail when my "rcsmerge" program is configured to use
  6097.     GNU diff version 2.1 or later? 
  6098.     
  6099.    A change in the overlap format was introduced in GNU diff3 between
  6100.    versions 2.0 and 2.1 that causes RCS versions before 5.6.0.1 to fail
  6101.    during a merge.
  6102.    
  6103.    To get consistent rcsmerge behavior, you have four choices:
  6104.    
  6105.      Go back to using GNU diff 1.15 or 2.0 with RCS versions 5.5 or 5.6.
  6106.    If you want to use GNU diff 2.1 or later, you'll have to pick one of
  6107.    the other three choices in this list.
  6108.    
  6109.      Grab RCS version 5.6.0.1 from an FSF archive and set the DIFF3_A
  6110.    macro to '1' as it tells you to in the Makefile:
  6111.    
  6112.    #define DIFF3_A 1
  6113.    
  6114.      Patch the RCS 5.6 source. Change line 84 in "merger.c" from:
  6115.    
  6116.    DIFF3, "-am", "-L", label[0], "-L", label[1], to DIFF3, "-amE", "-L",
  6117.    label[0], "-L", "", "-L", label[1],
  6118.    
  6119.      Wait both for RCS version 5.7 to be released and for a new version
  6120.    of CVS that can deal with it.
  6121.    
  6122.    Last modified: _6/13/1997_
  6123.    
  6124.   Category: /Past__Future_/Contributors/
  6125.   
  6126.    " + Contributors"
  6127.    
  6128.     1. Who wrote CVS? 
  6129.     
  6130.    Brian Berliner <berliner@sun.com> converted a collection of scripts
  6131.    written by Dick Grune <dick@cs.vu.nl> into a C program, then added all
  6132.    sorts of features. He continues to maintain CVS.
  6133.    
  6134.    Jeff Polk <polk@bsdi.com> wrote much of the code added between
  6135.    revisions 1.2 and 1.3. Many others were involved at some level.
  6136.    
  6137.    david d zuhn <zoo@armadillo.com> fixed a number of bugs, added some of
  6138.    the new features, reworked the whole thing to be more portable, and
  6139.    provided much of the energy to push CVS 1.4 out the door.
  6140.    
  6141.    Jim Kingdon implemented CVS 1.5's remote repository access features,
  6142.    fixed many bugs, and managed the release of version 1.5.
  6143.    
  6144.    Take a look at the README and the ChangeLog files in the CVS sources
  6145.    for more contributors.
  6146.    
  6147.    Last modified: _6/13/1997_
  6148.    
  6149.     2. You didn't write all of this FAQ, did you? 
  6150.     
  6151.    In the original hunt for questions to answer (performed in Jan/Feb,
  6152.    1993), I polled hundreds of people and I rephrased all sorts of text
  6153.    found on the net. Between 2/93 and 10/93, I released about 20
  6154.    versions, with corrections and additions from the info-cvs mailing
  6155.    list and private correspondence.
  6156.    
  6157.    Between 10/93 and 10/94 I extracted frequently asked questions from
  6158.    the 1200 mail messages to the info-cvs mailing list, turned them into
  6159.    focused questions and tried to answer them.
  6160.    
  6161.    93/02/?? ~4000 lines 93/06/?? ~5000 lines 93/10/23 7839 lines 278K
  6162.    94/10/29 9856 lines 360K 95/05/09 9981 lines 365K
  6163.    
  6164.    Because there are so many posers of questions, I will list only those
  6165.    who contribute answers or help significantly with the content and
  6166.    structure of this document.
  6167.    
  6168.    If I used someone else's text verbatim, I mentioned it in the given
  6169.    answer. The people whose email postings have added to this document or
  6170.    who have added to my understanding are:
  6171.    
  6172.    Brian Berliner <berliner@sun.com>, CVS maintainer. Paul Eggert
  6173.    <eggert@twinsun.com>, RCS maintainer.
  6174.    
  6175.    Gray Watson <gray@antaire.com> Per Cederqvist <ceder@signum.se> Pete
  6176.    Clark <pclark@is.com>
  6177.    
  6178.    all of whom have sent me copies of their tutorials and local CVS
  6179.    documentation.
  6180.    
  6181.    Additional contributors, who have sent me ideas, text, corrections and
  6182.    support include (in alphabetical order):
  6183.    
  6184.    Per Abrahamsen <amanda@iesd.auc.dk> Donald Amby
  6185.    <amby@mixcom.mixcom.com> Mark D Baushke <mdb@cisco.com> Jim Blandy
  6186.    <jimb@cyclic.com> Tom Cunningham <tomc@bouwsma,sps.mot.com> Graydon
  6187.    Dodson <grdodson@lexmark.com> Joe Drumgoole
  6188.    <joed@splatter.demon.co.uk> Don Dwiggins <dwig@markv.com> Bryant
  6189.    Eastham <bryant@ced.utah.edu> Dan Franklin <dan@diamond.bbn.com>
  6190.    Michael Ganzberger <ganzbergermd@ES.net> Steve Harris
  6191.    <vsh%etnibsd@uunet.uu.net> Erik van Linstee
  6192.    <linstee@dutecaj.et.tudelft.nl> Jeffrey M Loomis <jml@world.std.com>
  6193.    Barry Margolin <barmar@near.net> Mark K. Mellis <mkm@ncd.com> Chris
  6194.    Moore <Chris.Moore@src.bae.co.uk> Gary Oberbrunner <garyo@avs.com>
  6195.    Steve Turner <stevet@carrier.sps.mot.com> Dave Wolfe
  6196.    <dwolfe@pffft.sps.mot.com> Dale Woolridge <dwoolridge@cid.aes.doe.ca>
  6197.    
  6198.    Please send corrections. If I forgot you, remind me and I'll add your
  6199.    name to the list.
  6200.    
  6201.    Last modified: _6/13/1997_
  6202.    
  6203.   Category: /Past__Future_/Development/
  6204.   
  6205.    " + Development"
  6206.    
  6207.     1. Where do I send bug reports? 
  6208.     
  6209.    First make sure it is a bug. Talk to your friends, coworkers and
  6210.    anyone you know who uses CVS. Search this FAQ for related issues. Then
  6211.    test it carefully. Try out variations to narrow down the problem. Make
  6212.    sure it is repeatable. Look for workarounds so you can report them.
  6213.    
  6214.    If you are still sure it's a bug and you tried to fix it, skip to the
  6215.    next question. Otherwise, send a message to the info-cvs mailing list
  6216.    containing one of the following:
  6217.    
  6218.      If you have a good repeatable case and you think you know what is
  6219.    going on, then describe the problem in detail. Include a workaround if
  6220.    you have one.
  6221.    
  6222.      If you have no idea what is going on, go ahead and send a question
  6223.    to the info-cvs mailing list. Include any information you have
  6224.    describing the symptoms.
  6225.    
  6226.    Last modified: _6/13/1997_
  6227.    
  6228.     2. Where do I send fixes and patches? 
  6229.     
  6230.    First make sure the "fix" does something useful. Have someone review
  6231.    your fix. Spend a bit of one person's time in a detailed analysis of
  6232.    your vast idea before displaying a half-vast idea to hundreds of
  6233.    people.
  6234.    
  6235.    If you tried to fix it and the patch is small, include the patch in
  6236.    your message. Make sure the patch is based on the latest released
  6237.    version of CVS.
  6238.    
  6239.    If you tried to fix it and the patch is large, you should think about
  6240.    why it is so large. Did you add a generally useful feature, or did it
  6241.    grow out of hand?
  6242.    
  6243.    If you still believe it is solid, produce a patch file using the CVS
  6244.    commands "patch" or "diff -c". [[You *are* keeping CVS under CVS,
  6245.    right?]] The patch should be based on the latest released version of
  6246.    CVS. Then use the "cvsbug" program (provided with the CVS sources) to
  6247.    send it to the CVS maintainers. A self-contained patch that provides a
  6248.    single useful feature or correction might show up independently in the
  6249.    patches directory of the FTP archive.
  6250.    
  6251.    If careful testing reveals an RCS bug rather than a CVS bug, you can
  6252.    send bug reports to: rcs-bugs@cs.purdue.edu
  6253.    
  6254.    Last modified: _6/13/1997_
  6255.    
  6256.     3. Where do I send ideas for future development? 
  6257.     
  6258.    If you have a bright idea, discuss it on the info-cvs mailing list. If
  6259.    you have the time to implement something you can test, send the diffs
  6260.    along too as described above.
  6261.    
  6262.    Last modified: _6/13/1997_
  6263.    
  6264.     4. What plans are there for new features? 
  6265.     
  6266.  
  6267.  
  6268. A "rename" or "per-directory" database has been bandied about on
  6269. the net for years.  Many of the goals of the rename database have
  6270. been achieved by the so-called "death support" in recent versions of
  6271. CVS (such as 1.9).  For more information on what may remain to be
  6272. done, see item #189 in the TODO file of a development version of CVS.
  6273.  
  6274. CVS version 1.5 supports remote repository access, but Paul
  6275. Kunz  has produced another version
  6276. (rCVS) that also runs remotely.  Note that as far as I know there
  6277. are no advantages to rCVS over the remote CVS in CVS 1.5 and later,
  6278. and the rCVS user community has migrated to remote CVS.
  6279. rCVS is *not* a multisite CVS (see item #186 in TODO for more on
  6280. multisite).  For more on rCVS, see
  6281.  
  6282. ftp://ftp.slac.stanford.edu/software/rcvs
  6283.  
  6284. kingdon@cyclic.com
  6285.  
  6286.    Last modified: _9/6/1997_
  6287.    
  6288.     5. I have some time and I'd like to help. What can I do for you? 
  6289.     
  6290.  
  6291.         You can review this document, correct errors and fill in any of
  6292.         the incomplete sections.
  6293.  
  6294.         You can write scripts or CVS add-ons and make them available by
  6295.         web/FTP/etc.
  6296.  
  6297.         You could work on the regression test suite (src/sanity.sh in the
  6298.         CVS source distribution).
  6299.  
  6300.         You can write specs for new features, fix bugs, review the
  6301.         documentation or . . .
  6302.  
  6303.         For more information, see the files HACKING and DEVEL-CVS in the
  6304.         CVS source distribution or
  6305.         http://www.cyclic.com/cyclic-pages/cvsdev.html
  6306.  
  6307.         kingdon@cyclic.com
  6308.  
  6309.    Last modified: _9/6/1997_
  6310.    
  6311.   Category: /Past__Future_/Professional_Support/
  6312.   
  6313.    " + Professional Support"
  6314.    
  6315.     1. Doesn't Cygnus support CVS? 
  6316.     
  6317.  
  6318.  
  6319.  
  6320.         Cygnus is a company that supports free software such as the GCC
  6321.         compiler.  They have never sold support for CVS, however.  They
  6322.         do use CVS internally and have contributed much code to CVS over
  6323.         the years (for which CVS users should be grateful).
  6324.  
  6325.         kingdon@cyclic.com
  6326.  
  6327.    Last modified: _9/6/1997_
  6328.    
  6329.     2. What is Cyclic Software doing with CVS? 
  6330.     
  6331.  
  6332. Cyclic Software exists to provide support for CVS.  For details such
  6333. as prices and what this covers, see http://www.cyclic.com or ask
  6334. info@cyclic.com.
  6335.  
  6336. kingdon@cyclic.com
  6337.  
  6338.    Last modified: _9/6/1997_
  6339.    
  6340.   Category: /User_Tasks_/
  6341.   
  6342.    " User Tasks "
  6343.    
  6344.   Category: /User_Tasks_/Common_User_Tasks/
  6345.   
  6346.    " + Common User Tasks"
  6347.    
  6348.     1. What is the absolute minimum I have to do to edit a file? 
  6349.     
  6350.    Tell your Repository Administrator to create a module covering the
  6351.    directory or files you care about. You will be told that your module
  6352.    name is <module>. Then type:
  6353.    
  6354.                 cvs checkout <module>
  6355.                 cd <module>
  6356.                 emacs <file>          # Isn't Emacs a synonym for edit?
  6357.                 cvs commit <file>
  6358.  
  6359.    If you don't use modules (in my opinion, a mistake), you can check out
  6360.    a directory by substituting its relative path within the Repository
  6361.    for <module> in the example above.
  6362.    
  6363.    To work on a single file, you'll have to change "cd <module>" to "cd
  6364.    `dirname <module>`".
  6365.    
  6366.    Last modified: _6/13/1997_
  6367.    
  6368.     2. If I edit multiple files, must I type "commit" for each one? 
  6369.     
  6370.    No. You can commit a list of files and directories, including relative
  6371.    paths into multiple directories. You can also commit every modified
  6372.    file in the current directory or in all directories and subdirectories
  6373.    from your current directory downward. See 3D.2.
  6374.    
  6375.    Last modified: _6/13/1997_
  6376.    
  6377.     3. How do I get rid of the <module> directory that "checkout" created? 
  6378.     
  6379.    Change your directory to be the same as when you executed the
  6380.    "checkout" command that created <module>.
  6381.    
  6382.    If you want to get rid of the CVS control information, but leave the
  6383.    files and directories, type:
  6384.    
  6385.                 cvs release <module>
  6386.  
  6387.    If you want to obliterate the entire directory, type:
  6388.    
  6389.                 cvs release -d <module>
  6390.  
  6391.    ("release -d" searches through the output of "cvs -n update" and
  6392.    refuses to continue if the "update" command finds any modified files
  6393.    or non-ignored foreign files. Foreign directories too.)
  6394.    
  6395.    If you don't care about keeping "history", or checking for modified
  6396.    and foreign files, you can just remove the whole directory. That's "rm
  6397.    -rf <module>" under Unix.
  6398.    
  6399.    Last modified: _6/13/1997_
  6400.    
  6401.     4. How do I find out what has changed since my last update? 
  6402.     
  6403.    There are many ways to answer this.
  6404.    
  6405.    To find out what you've changed in your current working directory
  6406.    since your last checkout, update or commit, type:
  6407.    
  6408.                 cvs diff
  6409.  
  6410.    To find out what other people have added (to your branch) since you
  6411.    last checked out or updated, type:
  6412.    
  6413.                 cvs diff -r BASE -r HEAD
  6414.  
  6415.    To look at a revision history containing the comments for all changes,
  6416.    you can use the "log" command.
  6417.    
  6418.    You can also use "history" to trace a wide variety of events.
  6419.    
  6420.    Last modified: _6/13/1997_
  6421.    
  6422.     5. I just created a new file. How do I add it to the Repository? 
  6423.     
  6424.    The "update" command will mark files CVS doesn't know about in your
  6425.    working directory with a '?' indicator.
  6426.    
  6427.                 ? <file>
  6428.  
  6429.    To add <file> to the Repository, type:
  6430.    
  6431.                 cvs add <file>
  6432.                 cvs commit <file>
  6433.  
  6434.    See 3A.[2-5] and 4C.8 for branch and merge considerations.
  6435.    
  6436.    Last modified: _6/13/1997_
  6437.    
  6438.     6. How do I merge changes made by others into my working directory? 
  6439.     
  6440.    If you are asking about other branches, see Section 4C on "Branching".
  6441.    You will have to use the "update -j" command.
  6442.    
  6443.    Retrieving changes made to the Repository on the *same* branch you are
  6444.    working on is the main purpose of the "update" command. The "update"
  6445.    command tries to merge work committed to the Repository by others
  6446.    since you last executed "checkout", "update" or "commit" into your
  6447.    working files.
  6448.    
  6449.    For a single file, there are six possible results when you type the
  6450.    "update" command:
  6451.    
  6452.      If the file is lying in your working directory, but is not under
  6453.    CVS, it will do nothing but print:
  6454.    
  6455.    ? <file>
  6456.    
  6457.      If neither you nor anyone else has committed changes to <file>,
  6458.    since your last "checkout", "update" or "commit", "update" will print
  6459.    nothing and do nothing.
  6460.    
  6461.      If you have made no changes to a working file, but you or others
  6462.    have committed changes to the Repository since your last "checkout",
  6463.    "update" or "commit" of this working file, CVS will remove your
  6464.    working file and replace it with a copy of the latest revision of that
  6465.    file in the Repository. It will print:
  6466.    
  6467.    U <file>
  6468.    
  6469.    You might want to examine the changes (using the CVS "diff" command)
  6470.    to see if they mesh with your own in related files.
  6471.    
  6472.      If you have made changes to a working file, but no one has changed
  6473.    your BASE revision (the revision you retrieved from the Repository in
  6474.    your last "checkout", "update" or "commit"), "update" will print:
  6475.    
  6476.    M <file>
  6477.    
  6478.    Nothing changes. You were told that you have a modified file in your
  6479.    directory.
  6480.    
  6481.      If you have made changes to your working file and you or others have
  6482.    committed changes to the Repository, but in different sections of the
  6483.    file, CVS will merge the changes stored in the Repository since your
  6484.    last "checkout", "update" or "commit" into your working file. "update"
  6485.    will print:
  6486.    
  6487.    RCS file: /Repository/module/<file> retrieving revision 1.X retrieving
  6488.    revision 1.Y Merging differences between 1.X and 1.Y into <file> M
  6489.    <file>
  6490.    
  6491.    If you execute "diff" before and after this step, you should see the
  6492.    same output, since both the base file and your working file changed in
  6493.    parallel. This is one of the few times the otherwise nonsensical
  6494.    phrase "same difference" means something.
  6495.    
  6496.      If both you and those who committed files (since your last checkout,
  6497.    update or commit) have made changes to the same section of a file, CVS
  6498.    will merge the changes into your file as in #5 above, but it will
  6499.    leave conflict indicators in the file. "update" will print:
  6500.    
  6501.    RCS file: /Repository/module/<file> retrieving revision 1.X retrieving
  6502.    revision 1.Y Merging differences between 1.X and 1.Y into <file>
  6503.    rcsmerge warning: overlaps during merge
  6504.                 cvs update: conflicts found in <file>
  6505.                 C <file>
  6506.  
  6507.    This is a "conflict". The file will contain markers surrounding the
  6508.    overlapping text. The 'C' conflict indicator is sticky -- subsequent
  6509.    "update" commands will continue to show a 'C' until you edit the file.
  6510.    
  6511.    You must examine the overlaps with care and resolve the problem by
  6512.    analyzing how to retain the features of both changes. See 2D.7 and
  6513.    3P.6 for more details on conflict resolution.
  6514.    
  6515.    Last modified: _6/13/1997_
  6516.    
  6517.     7. How do I label a set of revisions so I can retrieve them later? 
  6518.     
  6519.    To "tag" the BASE revisions (the ones you last checked out, updated,
  6520.    or committed) you should "cd" to the head of the working directory you
  6521.    want to tag and type:
  6522.    
  6523.                 cvs tag <tag>
  6524.  
  6525.    It recursively walks through your working directory tagging the BASE
  6526.    revisions of all files.
  6527.    
  6528.    To "tag" the latest revision on the Main branch in the Repository, you
  6529.    can use the following from anywhere: (No "cd" is required -- it works
  6530.    directly on the Repository.)
  6531.    
  6532.                 cvs rtag <tag> <module>
  6533.  
  6534.    Last modified: _6/13/1997_
  6535.    
  6536.     8. How do I checkout an old release of a module, directory or file? 
  6537.     
  6538.    Module names and directories are simply ways to name sets of files.
  6539.    Once the names are determined, there are 6 ways to specify which
  6540.    revision of a particular file to check out:
  6541.    
  6542.      By tag or symbolic name, via the "-r <tag>" option.
  6543.    
  6544.      By date, via the "-D <date>" option.
  6545.    
  6546.      By branch tag (a type of tag with a magic format), via the "-r
  6547.    <branch_tag>" option.
  6548.    
  6549.      By date within a branch, via the "-r <branch_tag>:<date>" option.
  6550.    
  6551.      By an explicit branch revision number ("-r <rev>"), which refers to
  6552.    the latest revision on the branch. This isn't really an "old"
  6553.    revision, from the branch's perspective, but from the user's
  6554.    perspective the whole branch might have been abandoned in the past.
  6555.    
  6556.      An explicit revision number: "-r <rev>" Though this works, it is
  6557.    almost useless for more than one file.
  6558.    
  6559.    You type:
  6560.    
  6561.                 cvs checkout <option-specified-above> <module>
  6562.                 cd <module>
  6563.  
  6564.    Last modified: _6/13/1997_
  6565.    
  6566.     9. What do I have to remember to do periodically? 
  6567.     
  6568.    You should execute "cvs -n update" fairly often to keep track of what
  6569.    you and others have changed. It won't change anything -- it will just
  6570.    give you a report.
  6571.    
  6572.    Unless you are purposely delaying the inclusion of others' work, you
  6573.    should execute "update" once in a while and resolve the conflicts. It
  6574.    is not good to get too far out of sync with the rest of the developers
  6575.    working on your branch.
  6576.    
  6577.    It is assumed that your system administrators have arranged for editor
  6578.    backup and Unix temp files (#* and .#*) to be deleted after a few
  6579.    weeks. But you might want to look around for anything else that is
  6580.    ignored or hidden. Try "cvs -n update -I !" to see all the ignored
  6581.    files.
  6582.    
  6583.    If you are the Repository Administrator, see 4B.16 on Administrator
  6584.    responsibilities.
  6585.    
  6586.    Last modified: _6/13/1997_
  6587.    
  6588.   Category: /User_Tasks_/General_Questions/
  6589.   
  6590.    " + General Questions"
  6591.    
  6592.     1. How do I see what CVS is trying to do? 
  6593.     
  6594.    The '-t' option on the main "cvs" command will display every external
  6595.    command (mostly RCS commands and file deletions) it executes. When
  6596.    combined with the '-n' option, which prevents the execution of any
  6597.    command that might modify a file, you can see what it will do before
  6598.    you let it fly. The '-t' option will *not* display every internal
  6599.    action, only calls to external programs.
  6600.    
  6601.    To see a harmless example, try typing:
  6602.    
  6603.                 cvs -nt update
  6604.  
  6605.    Some systems offer a "trace" or "truss" command that will display all
  6606.    system calls as they happen. This is a *very* low-level interface that
  6607.    does not normally follow the execution of external commands, but it
  6608.    can be useful.
  6609.    
  6610.    The most complete answer is to read the source, compile it with the
  6611.    '-g' option and step through it under a debugger.
  6612.    
  6613.    Last modified: _6/13/1997_
  6614.    
  6615.     2. If I work with multiple modules, should I check them all out and commit
  6616.     them occasionally? Is it OK to leave modules checked out? 
  6617.     
  6618.    The simple answers are "Yes."
  6619.    
  6620.    There is no reason to remove working directories, other than to save
  6621.    disk space. As long as you have committed the files you choose to make
  6622.    public, your working directory is just like any other directory.
  6623.    
  6624.    CVS doesn't care whether you leave modules checked out or not. The
  6625.    advantage of leaving them checked out is that you can quickly visit
  6626.    them to make and commit changes.
  6627.    
  6628.    Last modified: _6/13/1997_
  6629.    
  6630.     3. What is a "sticky" tag? What makes it sticky? How do I loosen it? 
  6631.     
  6632.    When you execute "update -r <tag>", CVS remembers the <tag>. It has
  6633.    become "sticky" in the sense that until you change it or remove it,
  6634.    the tag is remembered and used in references to the file as if you had
  6635.    typed "-r <tag>" on the command line.
  6636.    
  6637.    It is most useful for a <branch_tag>, which is a sticky tag indicating
  6638.    what branch you are working on.
  6639.    
  6640.    A revision number ("-r <rev-number>") or date ("-D <date>") can also
  6641.    become sticky when they are specified on the command line.
  6642.    
  6643.    A sticky tag, revision or date remains until you specify another tag,
  6644.    revision or date the same way. The "update -A" command moves back to
  6645.    the Main branch, which has the side-effect of clearing all sticky
  6646.    items on the updated files.
  6647.    
  6648.    The "checkout" command creates sticky tags, revisions and dates the
  6649.    same way "update" does.
  6650.    
  6651.    Also, the '-k' option records a "sticky" keyword option that is used
  6652.    in further "updates until "update -A" is specified.
  6653.    
  6654.    Last modified: _6/13/1997_
  6655.    
  6656.     4. How do I get an old revision without updating the "sticky tag"? 
  6657.     
  6658.    Use the '-p' option to "pipe" data to standard output. The command
  6659.    "update -p -r <tag/rev>" sends the selected revision to your standard
  6660.    output (usually the terminal, unless redirected). The '-p' affects no
  6661.    disk files, leaving a "sticky tag" unaltered and avoiding all other
  6662.    side-effects of a normal "update".
  6663.    
  6664.    If you want to save the result, you can redirect "stdout" to a file
  6665.    using your shell's redirection capability. In most shells the
  6666.    following command works:
  6667.    
  6668.             cvs update -p -r <tag/rev> filename > diskfile
  6669.  
  6670.    Last modified: _6/13/1997_
  6671.    
  6672.     5. What operations disregard sticky tags? 
  6673.     
  6674.    The functions that routinely disregard sticky tags are:
  6675.    
  6676.      Those that work directly on the Repository or its administrative
  6677.    files:
  6678.    
  6679.                 admin   rtag    log     status  remove  history
  6680.  
  6681.      Those that take Tags or revisions as arguments and ignore everything
  6682.    else: (They also never *set* a sticky tag.)
  6683.    
  6684.                 rdiff   import  export
  6685.  
  6686.      The "release" command itself ignores sticky tags, but it calls "cvs
  6687.    -n update" (which *does* pay attention to a sticky tag) to figure out
  6688.    what inconsistencies exist in the working directory. If no
  6689.    discrepancies exist between the files you originally checked out
  6690.    (possibly marked by a sticky tag) and what is there now, "release -d"
  6691.    will delete them all.
  6692.    
  6693.      The "tag" command works on the revision lying in the working
  6694.    directory however it got there. That the revision lying there might
  6695.    happen to have a sticky tag attached to it is not the "tag" command's
  6696.    concern.
  6697.    
  6698.    The main function that *does* read and write sticky tags is the
  6699.    "update" command. You can avoid referring to or changing the sticky
  6700.    tag by using the '-p' option, which sends files to your terminal,
  6701.    touching nothing else.
  6702.    
  6703.    The "checkout" command sets sticky tags when checking out a new module
  6704.    and it acts like "update" when checking out a module into an existing
  6705.    directory.
  6706.    
  6707.    The "diff" and "commit" commands use the sticky tags, unless
  6708.    overridden on the command line. They do not set sticky tags. Note that
  6709.    you can only "commit" to a file checked out with a sticky tag, if the
  6710.    tag identifies a branch.
  6711.    
  6712.    There are really two types of sticky tags, one attached to individual
  6713.    files (in the ./CVS/Entries file) and one attached to each directory
  6714.    (in the ./CVS/Tag file). They can differ.
  6715.    
  6716.    The "add" command registers the desire to add a new file. If the
  6717.    "directory tag" (./CVS/Tag) file exists at the time of the "add", the
  6718.    value stored in ./CVS/Tag becomes the "sticky tag" on the new file.
  6719.    The file doesn't exist in the Repository until you "commit" it, but
  6720.    the ./CVS/Entries file holds the sticky tag name from the time of the
  6721.    "add" forward.
  6722.    
  6723.    Last modified: _6/13/1997_
  6724.    
  6725.     6. Is there a way to avoid reverting my Emacs buffer after committing a
  6726.     file? Is there a "cvs-mode" for Emacs? 
  6727.     
  6728.    See Section 4F.1
  6729.    
  6730.    Last modified: _6/13/1997_
  6731.    
  6732.     7. How does conflict resolution work? What *really* happens if two of us
  6733.     change the same file? 
  6734.     
  6735.    While editing files, there is no conflict. You are working on separate
  6736.    copies of the file stored in the virtual "branch" represented by your
  6737.    working directories. After one of you commits a file, the other may
  6738.    not commit the same file until "update" has merged the earlier
  6739.    committed changes into the later working file.
  6740.    
  6741.    For example, say you both check out rev 1.2 of <file> and make change
  6742.    to your working files. Your coworker commits revision 1.3. When you
  6743.    try to commit your file, CVS says:
  6744.    
  6745.                 cvs commit: Up-to-date check failed for `<file>'
  6746.  
  6747.    You must merge your coworker's changes into your working file by
  6748.    typing:
  6749.    
  6750.                 cvs update <file>
  6751.  
  6752.    which will produce the output described in 2B.6.
  6753.    
  6754.    If a conflict occurs, the filename will be shown with a status of 'C'.
  6755.    After you resolve any overlaps caused by the merging process, you may
  6756.    then commit the file. See 3P.6 for info on "sticky conflicts".
  6757.    
  6758.    Even if you get a simple 'M', you should examine the differences
  6759.    before committing the file. A smooth, error-free text merge is still
  6760.    no indication that the file is in proper shape. Compile and test it at
  6761.    least.
  6762.    
  6763.    The answer to two obvious questions is "Yes".
  6764.    
  6765.    Yes, the first one who commits avoids the merge. Later developers have
  6766.    to merge the earlier changes into their working files before
  6767.    committing the merged result. Depending on how difficult the merge is
  6768.    and how important the contending projects are, the order of commits
  6769.    and updates might have to be carefully staged.
  6770.    
  6771.    And yes, between the time you execute "update" and "commit" (while you
  6772.    are fixing conflicts and testing the results) someone else may commit
  6773.    another revision of <file>. You will have to execute "update" again to
  6774.    merge the new work before committing. Most organizations don't have
  6775.    this problem. If you do, you might consider splitting the file. Or
  6776.    hiring a manager.
  6777.    
  6778.    Last modified: _6/13/1997_
  6779.    
  6780.     8. How can I tell who has a module checked out? 
  6781.     
  6782.    If you "checkout" module names (not relative pathnames) and you use
  6783.    the release command, the "history" command will display active
  6784.    checkouts, who has them and where they were checked out. It is
  6785.    advisory only; it can be circumvented by using the '-l' option on the
  6786.    main "cvs" command.
  6787.    
  6788.    Last modified: _6/13/1997_
  6789.    
  6790.     9. Where did the .#<file>.1.3 file in my working directory come from? 
  6791.     
  6792.    It was created during an "update" when CVS merged changes from the
  6793.    Repository into your modified working file.
  6794.    
  6795.    It serves the same purpose as any "backup" file: saving your bacon
  6796.    often enough to be worth retaining. It is invaluable in recovering
  6797.    when things go wrong.
  6798.    
  6799.    Say Developers A (you) and B check out rev 1.3 of file <file>. You
  6800.    both make changes -- different changes. B commits first, so <file>,v
  6801.    in the Repository contains revisions up through 1.4.
  6802.    
  6803.    At this point, there are 5 (yes, five) versions of the file of
  6804.    interest to you:
  6805.    
  6806.      Revision 1.3 (What you originally checked out.)
  6807.    
  6808.      Revision 1.4 (What you need from developer B.)
  6809.    
  6810.      Your old working file. (Before the update.)
  6811.    
  6812.      Your new working file. (After the merge caused by "update".)
  6813.    
  6814.      Revision 1.5 (Which you will commit shortly.)
  6815.    
  6816.    In the case where your working file was not modified, #1 and #3 will
  6817.    be the same, as will #2 and #4. In this degenerate case, there is no
  6818.    need to create #5. The following assumes that your working file was
  6819.    modified.
  6820.    
  6821.    If the merge executed by the "update" caused no overlaps, and you
  6822.    commit the file immediately, #4 and #5 will be the same. But you can
  6823.    make arbitrary changes before committing, so the difference between #4
  6824.    and #5 might be more than just the correction of overlaps. In general,
  6825.    though, you don't need #4 after a commit.
  6826.    
  6827.    But #3 (which is the one saved as ".#<file>.1.3") holds all of your
  6828.    work, independent of B's work. It could represent a major effort that
  6829.    you couldn't afford to lose. If you don't save it somewhere, the merge
  6830.    makes #3 *disappear* under a potential blizzard of conflicts caused by
  6831.    overlapping changes.
  6832.    
  6833.    I have been saved a few times, and others I support have been saved
  6834.    hundreds of times, by the ability to "diff <original file> <original
  6835.    file with only my work added>", which can be done in the example above
  6836.    by the Unix shell command:
  6837.    
  6838.                 cvs update -p -r 1.3 <file> | diff - .#<file>.1.3
  6839.  
  6840.    The assumption is that the ".#" files will be useful far beyond the
  6841.    "commit" point, but not forever. You are expected to run the "normal"
  6842.    Unix cleanup script from "cron", which removes "#*" and ".#*" files
  6843.    older than a some period chosen by your sysadmin, usually ranging from
  6844.    7 to 30 days.
  6845.    
  6846.    A question was raised about the need for #3 after #5 has been
  6847.    committed, under the assumption that you won't commit files until
  6848.    everything is exactly as you like them.
  6849.    
  6850.    This assumes perfect humans, which violates one of the Cardinal rules
  6851.    of Software Engineering: Never assume any form of discipline on the
  6852.    part of the users of software. If restrictions are not bound into the
  6853.    software, then you, the toolsmith, have to arrange a recovery path.
  6854.    
  6855.    In other words, I've seen every possible variety of screwup you can
  6856.    imagine in #5. There is no way to make assumptions about what "should"
  6857.    happen. I've seen #5 filled with zeros because of NFS failures, I've
  6858.    seen emacs core dumps that leave #5 in an unreasonable state, I've
  6859.    seen a foolish developer uppercase the whole file (with his "undo"
  6860.    size set low so he couldn't undo it) and decide that it would be less
  6861.    work to play with the uppercased file than to blow it away and start
  6862.    over. I've even seen committed files with conflict markers still in
  6863.    them, a sure sign of carelessness.
  6864.    
  6865.    There are all sorts of scenarios where having #3 is incredibly useful.
  6866.    You can move it back into place and try again.
  6867.    
  6868.    Last modified: _6/13/1997_
  6869.    
  6870.     10. What is this "ignore" business? What is it ignoring? 
  6871.     
  6872.    The "update" and "import" commands use collections of Unix wildcards
  6873.    to skip over files and directories matching any of those patterns.
  6874.    
  6875.    You may add to the built-in ignore list by adding lines of
  6876.    whitespace-separated wildcards to the following places: (They are read
  6877.    in this order.)
  6878.    
  6879.      In a file named "cvsignore" in $CVSROOT/CVSROOT.
  6880.    
  6881.    A Repository Administrator uses this to add site-specific files and
  6882.    patterns to the built-in ignore list.
  6883.    
  6884.      In a file named ".cvsignore" in your home directory.
  6885.    
  6886.    For user-specific files. For example, if you use "__" as your default
  6887.    junk file prefix, you can put "__*" in your .cvsignore file.
  6888.    
  6889.    People who play around exclusively in directory trees where the
  6890.    Makefiles are generated by "imake" or "configure" might want to put
  6891.    "Makefile" in their ignore list, since they are all generated and
  6892.    usually don't end up in the Repository.
  6893.    
  6894.      In the CVSIGNORE environment variable.
  6895.    
  6896.    For session-specific files.
  6897.    
  6898.      Via the '-I' option on "import" or "update" commands.
  6899.    
  6900.    For this-command-only files.
  6901.    
  6902.      In a file named ".cvsignore" within each directory.
  6903.    
  6904.    The contents of a ".cvsignore" file in each directory is temporarily
  6905.    added to the ignore list. This way you can ignore files that are
  6906.    peculiar to that directory, such as executables and other generated
  6907.    files without known wildcard patterns.
  6908.    
  6909.    In any of the places listed above, a single '!' character nulls out
  6910.    the ignore list. A Repository administrator can use this to override,
  6911.    rather than enhance, the built-in ignore list. A user can choose to
  6912.    override the system-wide ignore list. For example, if you place "! *.o
  6913.    *.a" in your .cvsignore file, only *.o *.a files, plus any files a
  6914.    local-directory .cvsignore file, are ignored.
  6915.    
  6916.    A variant of the ignore-file scheme is used internally during
  6917.    checkout. "Module names" found in the modules file (or on the
  6918.    "checkout" command line) that begin with a '!' are ignored during
  6919.    checkout. This is useful to permanently ignore (if the '!' path is in
  6920.    the modules file) or temporarily ignore (if the '!' path is on the
  6921.    command line) a sub-directory within a Repository hierarchy. For
  6922.    example:
  6923.    
  6924.    cvs checkout !gnu/emacs/tests gnu/emacs
  6925.    
  6926.    would checkout the module (or relative path within $CVSROOT) named
  6927.    "gnu/emacs", but ignore the "tests" directory within it.
  6928.    
  6929.    Last modified: _6/13/1997_
  6930.    
  6931.     11. Is there a way to set user-specific configuration options? 
  6932.     
  6933.    User-specific configuration is available through use of a ".cvsrc"
  6934.    file in your home directory.
  6935.    
  6936.    CVS searches the first column of your ~/.cvsrc file for the cvs
  6937.    command name you invoked. If the command is found, the rest of the
  6938.    line is treated like a set of command line options, stuffed into the
  6939.    command line before the arguments you actually typed.
  6940.    
  6941.    For example, if you always want to see context diffs and you never
  6942.    want to have to delete a file before you run "cvs remove", then you
  6943.    should create a .cvsrc file containing the following:
  6944.    
  6945.                 diff -c
  6946.                 remove -f
  6947.  
  6948.    which will add the given options to every invocation of the given
  6949.    commands.
  6950.    
  6951.    [[The rest of this will be removed someday, when CVS changes.]]
  6952.    
  6953.    I would like to stop here with a comment that the command name to use
  6954.    is the full, canonical one. But the command that the cvsrc support
  6955.    uses is the string you typed on the command line, not the proper
  6956.    command. So to get the full effect of the above example, you should
  6957.    also add all the alternate command names:
  6958.    
  6959.                 di -c
  6960.                 dif -c
  6961.                 rm -f
  6962.                 delete -f
  6963.  
  6964.    There are two other limitations that will probably be fixed when CVS
  6965.    sprouts long option names:
  6966.    
  6967.      It only affects options made available on the command line.
  6968.    
  6969.    There is a limited number of short options. With long option names,
  6970.    there is no problem. You can have as many long options as you like,
  6971.    affecting anything that looks malleable.
  6972.    
  6973.      The existing command line options do not come in on/off pairs, so
  6974.    there is no easy way to override your ~/.cvsrc configuration for a
  6975.    single invocation of a command.
  6976.    
  6977.    Choosing a good set of long option pairs would fix this.
  6978.    
  6979.    Last modified: _6/13/1997_
  6980.    
  6981.     12. Is it safe to interrupt CVS using Control-C? 
  6982.     
  6983.    It depends on what you mean by "safe". ("Ah," said Arthur, "this is
  6984.    obviously some strange usage of the word *safe* that I wasn't
  6985.    previously aware of." -- Hitchhiker's Guide to the Galaxy)
  6986.    
  6987.    You won't hurt the underlying RCS files and if you are executing a
  6988.    command that only *reads* data, you will have no cleanup to do.
  6989.    
  6990.    But you may have to hit Control-C repeatedly to stop it. CVS uses the
  6991.    Unix "system" routine which blocks signals in the CVS parent process.
  6992.    A single Control-C during "system" will only halt the child process,
  6993.    usually some form of RCS command.
  6994.    
  6995.    If you don't hit another Control-C while the CVS process has control,
  6996.    it is likely to continue onto the next task assuming that the earlier
  6997.    one did its job. It is not enough to hit two Control-C's. You might
  6998.    simply kill two child processes and not interrupt CVS at all.
  6999.    Depending on the speed of your processor, your terminal and your
  7000.    fingers, you might have to hit dozens of Control-C's to stop the damn
  7001.    thing.
  7002.    
  7003.    Executing a CVS command, such as "commit" or "tag" that writes to the
  7004.    files is a different matter.
  7005.    
  7006.    Since CVS is not a full-fledged database, with what database people
  7007.    call "commit points", merely stopping the process will not back out
  7008.    the "transaction" and place you back in the starting blocks. CVS has
  7009.    no concept of an "atomic" transaction or of "backtracking", which
  7010.    means that a command can be half-executed.
  7011.    
  7012.    Hitting Control-C will usually leave lock files that you have to go
  7013.    clean up in the Repository.
  7014.    
  7015.    Example1:
  7016.    
  7017.                 If you interrupt a multi-file "commit" in the middle of
  7018.                 an RCS checkin, RCS will leave the file either fully
  7019.                 checked-in or in its original state.  But CVS might have
  7020.                 been half-way through the list of files to commit.  The
  7021.                 directory or module will be inconsistent.
  7022.  
  7023.                 To recover, you must remove the lock files, then decide
  7024.                 whether you want to back out or finish the job.
  7025.  
  7026.                 To back out, you'll have to apply the "admin -o"
  7027.                 command, very carefully, to remove the newly committed
  7028.                 revisions.  This is usually a bad idea, but is
  7029.                 occasionally necessary.
  7030.  
  7031.                 To finish, you can simply retype the same commit command.
  7032.                 CVS will figure out what files are still modified and
  7033.                 commit them.  It helps that RCS doesn't leave a file in an
  7034.                 intermediate state.
  7035.  
  7036.    Example2:
  7037.    
  7038.                 If you interrupt a multi-file "tag" command, you have a
  7039.                 problem similar, but not equivalent, to interrupting a
  7040.                 "commit".  The RCS file will still be consistent, but
  7041.                 unlike "commit", which only *adds* to the RCS file, "tag"
  7042.                 can *move* a tag and it doesn't keep a history of what
  7043.                 revision a tag used to be attached to.
  7044.  
  7045.                 Normally, you have little choice but to re-execute the
  7046.                 command and allow it to tag everything consistently.
  7047.  
  7048.                 You might be able to recover by carefully re-applying the
  7049.                 tags via the "cvs admin -N" command, but you'll still have
  7050.                 to dig up from outside sources the information you use to
  7051.                 determine what tag was on what revision in what file.
  7052.                 the Repository, or by using the equivalent: "cvs admin".
  7053.  
  7054.    Halting a new "checkout" should cause no harm. If you don't want it,
  7055.    "release" (or rm -rf) it. If you do want it, re-execute the command. A
  7056.    repeated "checkout" from above a directory acts like a repeated
  7057.    "update -d" within it.
  7058.    
  7059.    Halting "update" half-way will give you an unpredictable collection of
  7060.    files and revisions. To continue, you can rerun the update and it
  7061.    should move you forward into in a known state. To back out, you'll
  7062.    have to examine the output from the first "update" command, take a
  7063.    look at each file that was modified and reconstruct the previous state
  7064.    by editing the ./CVS/Entries file and by using "cvs admin". Good Luck.
  7065.    
  7066.    Last modified: _6/13/1997_
  7067.    
  7068.     13. How do I turn off the "admin" command? 
  7069.     
  7070.    In the current revision, you'd have to edit the source code.
  7071.    
  7072.    Last modified: _6/13/1997_
  7073.    
  7074.     14. How do I turn off the ability to disable history via "cvs -l"? 
  7075.     
  7076.    In the current revision, you'd have to edit the source code.
  7077.    
  7078.    Last modified: _6/13/1997_
  7079.    
  7080.     15. How do I keep certain people from accessing certain directories? 
  7081.     
  7082.    If you don't try to run CVS set[ug]id, you can use Unix groups and
  7083.    permissions to limit access to the Repository.
  7084.    
  7085.    If you only want to limit "commit" commands, you can write a program
  7086.    to put in the "commitinfo" file. In the "contrib" directory, there are
  7087.    a few scripts that might help you out.
  7088.    
  7089.    Last modified: _6/13/1997_
  7090.    
  7091.   Category: /User_Tasks_/Getting_Started/
  7092.   
  7093.    " + Getting Started"
  7094.    
  7095.     1. What is the first thing I have to know? 
  7096.     
  7097.    Your organization has most likely assigned one or more persons to
  7098.    understand, baby-sit and administer the CVS programs and the data
  7099.    Repository. I call these persons Repository Administrators. They
  7100.    should have set up a Repository and "imported" files into it.
  7101.    
  7102.    If you don't believe anyone has this responsibility, or you are just
  7103.    testing CVS, then *you* are the Repository Administrator.
  7104.    
  7105.    If you are a normal user of CVS ask your Repository Administrator what
  7106.    module you should check out.
  7107.    
  7108.    Then you can work.
  7109.    
  7110.    If you *are* the Repository Administrator, you will want to read
  7111.    everything you can get your hands on, including this FAQ. Source
  7112.    control issues can be difficult, especially when you get to branches
  7113.    and release planning. Expect to feel stupid for a few days/weeks.
  7114.    
  7115.    No tool in the universe avoids the need for intelligent organization.
  7116.    In other words, there are all sorts of related issues you will
  7117.    probably have to learn. Don't expect to dive in without any
  7118.    preparation, stuff your 300 Megabytes of sources into CVS and expect
  7119.    to start working. If you don't prepare first, you will probably spend
  7120.    a few sleepless nights.
  7121.    
  7122.    Last modified: _6/13/1997_
  7123.    
  7124.     2. Where do I work? 
  7125.     
  7126.    Wherever you have disk space. That's one of the advantages of CVS: you
  7127.    use the "checkout" command to copy files from the Repository to your
  7128.    working directory, which can be anywhere you have the space.
  7129.    
  7130.    Your local group might have conventions for where to work. Ask your
  7131.    peers.
  7132.    
  7133.    Last modified: _6/13/1997_
  7134.    
  7135.     3. What does CVS use from my environment? 
  7136.     
  7137.    You must set two environment variables. Some shells share these
  7138.    variables with local shell variables using a different syntax. You'll
  7139.    have to learn how your shell handles them.
  7140.    
  7141.         Variable        Value (or action)
  7142.         ---------       ---------------------
  7143.         CVSROOT         Absolute pathname of the head of your Repository.
  7144.  
  7145.         PATH            Normally set to a list of ':'-separated directory
  7146.                         pathnames searched to find executables.  You must
  7147.                         make sure "cvs" is in one of the directories.
  7148.  
  7149.                         If your CVS was built with the RCSBIN directory set
  7150.                         to null (""), and you don't set the RCSBIN
  7151.                         variable mentioned below, then the RCS commands
  7152.                         also must be somewhere in your PATH.
  7153.  
  7154.    Optional variables: (Used if set, but ignored otherwise.)
  7155.    
  7156.         Variable        Value (or action)
  7157.         ---------       ---------------------
  7158.         CVSEDITOR       The name of your favorite fast-start editor
  7159.                         program.  You'll be kicked into your editor to
  7160.                         supply revision comments if you don't specify them
  7161.                         via -m "Log message" on the command line.
  7162.  
  7163.         EDITOR          Used if CVSEDITOR doesn't exist.  If EDITOR
  7164.                         doesn't exist, CVS uses a configured constant,
  7165.                         usually, "vi".
  7166.  
  7167.         CVSREAD         Sets files to read-only on "checkout".
  7168.  
  7169.         RCSBIN          Changes where CVS finds the RCS commands.
  7170.  
  7171.         CVSIGNORE       Adds to the ignore list.  See Section 2D.
  7172.  
  7173.    Other variables used by CVS that are normally set upon login:
  7174.    
  7175.         Variable        Value (or action)
  7176.         ---------       ---------------------
  7177.         LOGNAME         Used to find the real user name.
  7178.  
  7179.         USER            Used to find the real user name if no LOGNAME.
  7180.  
  7181.         HOME            Used to determine your home directory, if set.
  7182.                         Otherwise LOGNAME/USER/getuid() are used to find
  7183.                         your home directory from the passwd file.
  7184.  
  7185.         TMPDIR          Used during import.  It might also be used if your
  7186.                         platform's version of mktemp(3) is unusual, or
  7187.                         you have changed the source to use tmpnam(3).
  7188.  
  7189.    Last modified: _6/13/1997_
  7190.    
  7191.     4. OK, I've been told that CVS is set up, my module is named "ralph" and I
  7192.     have to start editing. What do I type? 
  7193.     
  7194.                 cd <where you have some space to work>
  7195.                 cvs checkout ralph
  7196.                 cd ralph
  7197.  
  7198.    And hack away.
  7199.    
  7200.    Last modified: _6/13/1997_
  7201.    
  7202.     5. I have been using RCS for a while. Can I convert to CVS without losing
  7203.     my revision history? How about converting from SCCS? 
  7204.     
  7205.    If you are asking such questions, you are not a mere user of CVS, but
  7206.    one of its Administrators! You should take a look at Section 4A,
  7207.    "Installing CVS" and Section 4B, "Setting up and Managing the
  7208.    Repository".
  7209.    
  7210.    Last modified: _6/13/1997_
  7211.    
  7212.   Category: /User_Tasks_/Less_Common_User_Tas/
  7213.   
  7214.    " + Less Common User Tasks"
  7215.    
  7216.     1. Can I create non-CVS sub-directories in my working directory? 
  7217.     
  7218.    Yes. Unless the directory exists in the Repository, "update" will skip
  7219.    over them and print a '?' the way it does for files you forgot to add.
  7220.    You can avoid seeing the '?' by adding the name of the foreign
  7221.    directory to the ./.cvsignore file, just ask you can do with files.
  7222.    
  7223.    If you explicitly mention a foreign directory on the "update" command
  7224.    line, it will traverse the directory and waste a bit of time, but if
  7225.    any directory or sub-directory lacks the ./CVS administrative
  7226.    directory, CVS will print an error and abort.
  7227.    
  7228.    Last modified: _6/13/1997_
  7229.    
  7230.     2. How do I add new sub-directories to the Repository? 
  7231.     
  7232.    The "add" command will work on directories. You type:
  7233.    
  7234.    mkdir <dir>
  7235.             cvs add <dir>
  7236.  
  7237.    It will respond:
  7238.    
  7239.    Directory /Repos/<dir> added to the repository
  7240.    
  7241.    and will create both a matching directory in the Repository and a
  7242.    ./CVS administrative directory within the local <dir> directory.
  7243.    
  7244.    Last modified: _6/13/1997_
  7245.    
  7246.     3. How do I remove a file I don't need? 
  7247.     
  7248.    (See the questions in Section 4B on removing files from the
  7249.    Repository.)
  7250.    
  7251.    You type:
  7252.    
  7253.                 rm <file>
  7254.                 cvs remove <file>
  7255.  
  7256.    CVS registers the file for removal. To complete the removal, you must
  7257.    type:
  7258.    
  7259.                 cvs commit <file>
  7260.  
  7261.    CVS moves the file to the Attic associated with your working
  7262.    directory. Each directory in the Repository stores its deleted files
  7263.    in an Attic sub-directory. A normal "checkout" doesn't look in the
  7264.    Attic, but if you specify a tag, a date or a revision, the "checkout"
  7265.    (or "update") command will retrieve files from the Attic with that
  7266.    tag, date or revision.
  7267.    
  7268.    Last modified: _6/13/1997_
  7269.    
  7270.     4. How do I rename a file? 
  7271.     
  7272.    CVS does not offer a way to rename a file in a way that CVS can track
  7273.    later. See Section 4B for more information.
  7274.    
  7275.    Here is the best (to some, the only acceptable) way to get the effect
  7276.    of renaming, while preserving the change log:
  7277.    
  7278.      Copy the RCS (",v") file directly in the Repository.
  7279.    
  7280.    cp $CVSROOT/<odir>/<ofile>,v $CVSROOT/<ndir>/<nfile>,v
  7281.    
  7282.    By duplicating the file, you will preserve the change history and the
  7283.    ability to retrieve earlier revisions of the old file via the "-r
  7284.    <tag/rev>" or "-D <date>" options to "checkout" and "update".
  7285.    
  7286.      Remove the old file using CVS.
  7287.    
  7288.    cd <working-dir>/<odir> rm <ofile>
  7289.                 cvs remove <ofile>
  7290.                 cvs commit <ofile>
  7291.  
  7292.    This will move the <ofile> to the Attic associated with <odir>.
  7293.    
  7294.      Retrieve <nfile> and remove all the Tags from it.
  7295.    
  7296.    By stripping off all the old Tags, "checkout -r" and "update -r" won't
  7297.    retrieve revisions Tagged before the renaming.
  7298.    
  7299.    cd <working-dir>/<ndir>
  7300.                 cvs update <nfile>
  7301.                 cvs log <nfile>                 # Save the list of Tags
  7302.                 cvs tag -d <tag1> <nfile>
  7303.                 cvs tag -d <tag2> <nfile>
  7304.                 . . .
  7305.  
  7306.    This technique can be used to rename files within one directory or
  7307.    across different directories. You can apply this idea to directories
  7308.    too, as long as you apply the above to each file and don't delete the
  7309.    old directory.
  7310.    
  7311.    Of course, you have to change your build system (e.g. Makefile) in
  7312.    your <working-dir> to know about the name change.
  7313.    
  7314.    Warning: Stripping the old tags from the copied file will allow "-r
  7315.    <tag>" to do the right thing, but you will still have problems with
  7316.    "-D <date>" because there is no place to store the "deletion time".
  7317.    See 5B.3 for more details.
  7318.    
  7319.    Last modified: _6/13/1997_
  7320.    
  7321.     5. How do I make sure that all the files and directories in my working
  7322.     directory are really in the Repository? 
  7323.     
  7324.    A "cvs update", or "cvs -n update" (which won't modify your working
  7325.    directory) will display foreign elements, which have no counterpart in
  7326.    the Repository, preceded by a '?'. To register foreign directories,
  7327.    you can use "cvs add". To register foreign files, you can use "cvs
  7328.    add" followed by "cvs commit".
  7329.    
  7330.    You could also checkout your module, or the Repository directory
  7331.    associated with your working directory, a second time into another
  7332.    work area and compare it to your working directory using the (non-CVS)
  7333.    "diff -r" command.
  7334.    
  7335.    By default many patterns of files are ignored. If you create a file
  7336.    named "core" or a file ending in ".o", it is usually ignored. If you
  7337.    really want to see all the files that aren't in the Repository, you
  7338.    can use a special "ignore" pattern to say "ignore no files". Try
  7339.    executing: (You may have to quote or backwhack (i.e. precede by '\')
  7340.    the '!' in your shell.)
  7341.    
  7342.                 cvs -n update -I !
  7343.  
  7344.    The above command will display not only the normal modified, update
  7345.    and conflict indicators ('M', 'U', and 'C' respectively) on files
  7346.    within the Repository, but it will also display each file not in the
  7347.    Repository preceded by a '?' character.
  7348.    
  7349.    The '-n' option will not allow "update" to alter your working
  7350.    directory.
  7351.    
  7352.    Last modified: _6/13/1997_
  7353.    
  7354.     6. How do I create a branch? 
  7355.     
  7356.    Type this in your working directory:
  7357.    
  7358.                 cvs tag -b <branch_tag>
  7359.  
  7360.    and you will create a branch. No files have real branches in them yet,
  7361.    but if you move onto the branch by typing:
  7362.    
  7363.                 cvs update -r <branch_tag>
  7364.  
  7365.    and commit a file in the normal way:
  7366.    
  7367.                 cvs commit <file>
  7368.  
  7369.    then a branch will be created in the underlying <file>,v file and the
  7370.    new revision of <file> will appear only on that branch.
  7371.    
  7372.    See Section 4C, on Branching.
  7373.    
  7374.    Last modified: _6/13/1997_
  7375.    
  7376.     7. How do I modify the modules file? How about the other files in the
  7377.     CVSROOT administrative area? 
  7378.     
  7379.    A module named "modules" has been provided in the default modules
  7380.    file, so you can type:
  7381.    
  7382.                 cvs checkout modules
  7383.                 cd modules
  7384.  
  7385.    Another module named CVSROOT has been provided in the default modules
  7386.    file, covering all the administrative files. Type:
  7387.    
  7388.                 cvs checkout CVSROOT
  7389.                 cd CVSROOT
  7390.  
  7391.    Then you can edit your files, followed by:
  7392.    
  7393.                 cvs commit
  7394.  
  7395.    If you start with the provided template for the "modules" file, the
  7396.    CVSROOT and the "modules" module will have the "mkmodules" program as
  7397.    a "commit helper". After a file is committed to such a module,
  7398.    "mkmodules" will convert a number of standard files (See 4B.2) in the
  7399.    CVSROOT directory inside the Repository into a form that is usable by
  7400.    CVS.
  7401.    
  7402.    Last modified: _6/13/1997_
  7403.    
  7404.     8. How do I split a file into pieces, retaining revision histories? 
  7405.     
  7406.    If you and a coworker find yourselves repeatedly committing the same
  7407.    file, but never for changes in the same area of the file, you might
  7408.    want to split the file into two or more pieces. If you are both
  7409.    changing the same section of code, splitting the file is of no use.
  7410.    You should talk to each other instead.
  7411.    
  7412.    If you decide to split the file, here's a suggestion. In many ways, it
  7413.    is similar to multiple "renamings" as described in 2C.4 above.
  7414.    
  7415.    Say you want to split , which already in the Repository, into three
  7416.    pieces, , and .
  7417.    
  7418.      Copy the RCS (",v") files directly in the Repository, creating the
  7419.    new files, then bring readable copies of the new files into the
  7420.    working directory via "update".
  7421.    
  7422.    cp $CVSROOT//,v $CVSROOT//,v cp $CVSROOT//,v $CVSROOT//,v
  7423.                 cvs update
  7424.  
  7425.      Then remove all the from the new files, either using:
  7426.    
  7427.                 cvs log               # Save the list of
  7428.                 cvs tag -d
  7429.                 cvs tag -d
  7430.                 . . .
  7431.  
  7432.    (eivind@freebsd.org) or using the following little script to
  7433.    autmatically remove the tags directly from the repository files:
  7434.  
  7435. #!/bin/sh
  7436. for file in $*
  7437. do
  7438.         TAGS=`rlog $file | awk '/^symbolic names:/,/^keyword subst/' | awk 'BEG
  7439. IN {FS=":"} /^\t/ {print $1}'`
  7440.         echo The tags in $file are
  7441.         echo $TAGS
  7442.         echo Is it OK to remove these?
  7443.         read confirm
  7444.         if [ "$confirm" = "y" -o "$confirm" = "yes" ]
  7445.         then
  7446.                 for tag in $TAGS
  7447.                 do
  7448.                         echo Removing $file:$tag
  7449.                         rcs -n$tag $file
  7450.                 done
  7451.         fi
  7452. done
  7453.  
  7454.      Edit each file until it has the data you want in it. This is a
  7455.    hand-editing job, not something CVS can handle. Then commit all the
  7456.    files.
  7457.    
  7458.    [From experience, I'd suggest making sure that only one copy of each
  7459.    line of code exists among the three files, except for "include"
  7460.    statements, which must be duplicated. And make sure the code
  7461.    compiles.]
  7462.    
  7463.    emacs
  7464.                 cvs commit
  7465.  
  7466.    As in the "rename" case, by duplicating the files, you'll preserve the
  7467.    change history and the ability to retrieve earlier revisions.
  7468.    
  7469.    Of course, you have to alter your build system (e.g. Makefiles) to
  7470.    take the new names and the change in contents into account.
  7471.    
  7472.    Last modified: _3/11/1998_
  7473.    
  7474.   Category: /What_is_CVS_/
  7475.   
  7476.    " What is CVS? "
  7477.    
  7478.   Category: /What_is_CVS_/How_does_CVS_differ_/
  7479.   
  7480.    " + How does CVS differ from other, similar software?"
  7481.    
  7482.     1. How does CVS differ from RCS? 
  7483.     
  7484.    CVS uses RCS to do much of its work and absolutely all the work of
  7485.    changing the underlying RCS files in the Repository.
  7486.    
  7487.    RCS comprises a set of programs designed to keep track of changes to
  7488.    individual files. Of course, it also allows you to refer to multiple
  7489.    files on the command line, but they are handled by iterating over
  7490.    individual files. There is no pretense of coordinated interaction
  7491.    among groups of files.
  7492.    
  7493.    CVS's main intent is to provide a set of grouping functions that allow
  7494.    you to treat a collection of RCS files as a single object. Of course,
  7495.    CVS also has to do a lot of iteration, but it tries its best to hide
  7496.    that it is doing so. In addition, CVS has some truly group-oriented
  7497.    facets, such as the modules file and the CVS administrative files that
  7498.    refer to a whole directory or module.
  7499.    
  7500.    One group aspect that can be a bit confusing is that a CVS branch is
  7501.    not the same as an RCS branch. To support a CVS branch, CVS uses
  7502.    "tags" (what RCS calls "symbols") and some local state, in addition to
  7503.    RCS branches.
  7504.    
  7505.    Other features offered by CVS that are not supported directly by RCS
  7506.    are
  7507.    
  7508.      Automatic determination of the state of a file, (e.g. modified,
  7509.    up-to-date with the Repository, already tagged with the same string,
  7510.    etc.) which helps in limiting the amount of displayed text you have to
  7511.    wade through to figure out what changed and what to do next.
  7512.    
  7513.      A copy-modify-merge scheme that avoids locking the files and allows
  7514.    simultaneous development on a single file.
  7515.    
  7516.      Serialization of commits. CVS requires you to merge all changes
  7517.    committed (via "update") since you checked out your working copy of
  7518.    the file. Although it is still possible to commit a file filled with
  7519.    old data, it is less likely than when using raw RCS.
  7520.    
  7521.      Relatively easy merging of releases from external Vendors.
  7522.    
  7523.    Last modified: _6/13/1997_
  7524.    
  7525.     2. How does CVS differ from SCCS? 
  7526.     
  7527.    SCCS is much closer to RCS than to CVS, so some of the previous entry
  7528.    applies.
  7529.    
  7530.    You might want to take a look at Walter Tichy's papers on RCS, which
  7531.    are referred to in the RCS man pages.
  7532.    
  7533.    [[More info here?]]
  7534.    
  7535.    Last modified: _6/13/1997_
  7536.    
  7537.     3. How does CVS differ from ClearCase? 
  7538.     
  7539.    ClearCase is a distributed client-server version control system.
  7540.    ClearCase is a variant DSEE tools, formerly available on Apollo
  7541.    platforms. The ClearCase tool set includes a few X-based interface
  7542.    tools, a command-line interface, and C programmer API. It is currently
  7543.    available on Sun, HP, SGI and OSF/1 platforms.
  7544.    
  7545.    ClearCase uses a special Unix filesystem type, called "mvfs" for
  7546.    "multi-version file system". Conceptually, mvfs adds another dimension
  7547.    to a regular Unix filesystem. The new axis is used to store the
  7548.    different versions of files and to provide a tree-hierarchical view of
  7549.    a collection of objects that might be scattered across any number of
  7550.    separate hosts on your local network.
  7551.    
  7552.    Each user acquires a "view" into the file database by creating a
  7553.    special mvfs mount point on their machine. Each view has a
  7554.    "configuration spec" containing a set of selection rules that specify
  7555.    the particular version of each file to make visible in that view. You
  7556.    can think of a "view" as a work area in CVS, except that the files
  7557.    don't really exist on your local disk until you modify them. This
  7558.    technique conserves disk space because it doesn't keep private copies
  7559.    of read-only files.
  7560.    
  7561.    Another advantage is that a view is "transparent" in the sense that
  7562.    all of the files in a "view" appear to be regular Unix files to other
  7563.    tools and Unix system calls. An extended naming convention allows
  7564.    access to particular versions of a file directly:
  7565.    "test.cc@@/main/bugfix/3" identifies the third version of test.c on
  7566.    the bugfix branch.
  7567.    
  7568.    ClearCase supports both the copy-modify-merge model of CVS (by using
  7569.    what are called "unreserved checkouts" and the checkin/checkout
  7570.    development model with file locking. Directories are
  7571.    version-controlled objects as well as files. A graphical merge tool is
  7572.    provided. Like RCS, ClearCase supports branches, symbolic tags, and
  7573.    delta compression. ASCII as well as binary files are supported, and
  7574.    converters from RCS, SCCS, DSEE formats are also included.
  7575.    
  7576.    A make-compatible build facility is provided that can identify common
  7577.    object code and share it among developers. A build auditing feature
  7578.    automatically records file dependencies by tracking every file that is
  7579.    opened when producing a derived object, thus making explicit
  7580.    dependency lists unnecessary. Pre- and post-event triggers are
  7581.    available for most ClearCase operations to invoke user programs or
  7582.    shell scripts. User-defined attributes can be assigned to any version
  7583.    or object. Hyper-links between version controlled objects can record
  7584.    their relationship.
  7585.    
  7586.    For more information, contact:
  7587.    
  7588.    Atria Software, Inc. 24 Prime Park Way Natick, MA 01760 info@atria.com
  7589.    
  7590.    (508) 650-1193 (phone) (508) 650-1196 (fax)
  7591.    
  7592.                                 Originally contributed by Steve Turner
  7593.                                 Edited by the author of this FAQ.
  7594.  
  7595.    Last modified: _6/13/1997_
  7596.    
  7597.     4. How does CVS differ from TeamWare/SparcWorks? 
  7598.     
  7599.    TeamWare is a configuration management tool from Sun Microsystems, a
  7600.    part of SparcWorks. It uses the same copy and merge model as CVS. The
  7601.    central abstraction is a workspace, which corresponds to either a CVS
  7602.    branch or a checked out module. TeamWare allows you to manipulate
  7603.    workspaces directly, including moving and merging code between
  7604.    workspaces. You can put your workspace on tape and continue to work
  7605.    with it at home, just like you can with CVS. TeamWare is built upon
  7606.    and compatible with SCCS.
  7607.    
  7608.    TeamWare provides both a command line interface and a graphical
  7609.    interface. The CodeManager tool will display the project as a tree of
  7610.    workspaces, and allows you to manipulate them with drag and drop. The
  7611.    other tools are VersionTool that displays and manipulates a dag with a
  7612.    version history of a single file, CheckPoint that will create symbolic
  7613.    tags, MakeTool, a make compatible tool with a GUI, and FileMerge which
  7614.    will interactively merge files when needed (like emerge for emacs). If
  7615.    you have a sun, you can try /usr/old/mergetool for an old SunView
  7616.    version of FileMerge.
  7617.    
  7618.    Email: sunprosig@sun.com
  7619.    
  7620.                                 Originally extracted from TeamWare
  7621.                                 Marketing literature by Per Abrahamsen.
  7622.                                 Edited by the author of this FAQ.
  7623.  
  7624.    For more information, contact:
  7625.    
  7626.    SunExpress, Inc. P.O. Box 4426 Bridgeton, MO 63044-9863 (800)873-7869
  7627.    
  7628.    Last modified: _6/13/1997_
  7629.    
  7630.     5. How does CVS differ from Aegis? 
  7631.     
  7632.    Aegis appears to be a policy-setting tool that allows you to use other
  7633.    sub-programs (make, RCS, etc.) to implement pieces of the imposed
  7634.    policy.
  7635.    
  7636.    The initial document seems to say that most Unix tools are inadequate
  7637.    for use under Aegis.
  7638.    
  7639.    It is not really similar to CVS and requires a different mindset.
  7640.    
  7641.    [[Need more info here.]]
  7642.    
  7643.    Last modified: _6/13/1997_
  7644.    
  7645.     6. How does CVS differ from Shapetools? 
  7646.     
  7647.    Shapetools includes a build mechanism (called Shape, not surprisingly)
  7648.    that is aware of the version mechanism, and some dependency tracking.
  7649.    It is based on a file system extension called Attributed File System,
  7650.    which allows arbitrary-sized "attributes" to be associated with a
  7651.    file. Files are version controlled in a manner similar to RCS.
  7652.    Configurations are managed through the Shapefile, an extension of the
  7653.    Makefile syntax and functionality. Shape includes version selection
  7654.    rules to allow sophisticated selection of component versions in a
  7655.    build.
  7656.    
  7657.    Shapetools' concurrency control is pessimistic, in contrast to that of
  7658.    CVS. Also, there's very limited support for branching and merging. It
  7659.    has a built-in policy for transitioning a system from initial
  7660.    development to production.
  7661.    
  7662.                                 Contributed by Don Dwiggins
  7663.  
  7664.    Last modified: _6/13/1997_
  7665.    
  7666.     7. How does CVS differ from TeamNet? 
  7667.     
  7668.    TeamNet is a configuration management tool from TeamOne.
  7669.    
  7670.    For more information, contact:
  7671.    
  7672.    TeamOne 710 Lakeway Drive, Ste 100 Sunnyvale, CA 94086 (800) 442-6650
  7673.    
  7674.                                 Contributed by Steve Turner
  7675.  
  7676.    Last modified: _6/13/1997_
  7677.    
  7678.     8. How does CVS differ from ProFrame? 
  7679.     
  7680.    ProFrame is a new system integration framework from IBM. ProFrame is
  7681.    compliant with the CFI (CAD Framework Initiative) industry standards,
  7682.    including the Scheme extension language.
  7683.    
  7684.    ProFrame consists of three major components: (1) the Process Manager
  7685.    that automates your local design methodology (2) the Design Data
  7686.    Manager handles configuration management, and (3) Inter-tool
  7687.    Communication to provide a communication path among tools running on
  7688.    heterogeneous servers.
  7689.    
  7690.    The Design Data Manager(2) is probably the appropriate component to
  7691.    compare to CVS. The Design Data Manager provides version control with
  7692.    checkin/checkout capability, configuration management, and data
  7693.    dependency tracking. A graphical data selection interface is provided.
  7694.    Using this interface, you may create and manipulate objects and
  7695.    hierarchy structures, view the revision history for an object, and
  7696.    view and assign attributes to a design object.
  7697.    
  7698.    The ProFrame server currently runs only on RS6000, but clients may be
  7699.    a wide variety of Unix platforms. Contact IBM for the latest platform
  7700.    information.
  7701.    
  7702.    For more information, contact:
  7703.    
  7704.    IBM EDA Marketing and Sales P.O. Box 950, M/S P121 Poughkeepsie, NY
  7705.    12602 (800) 332-0066
  7706.    
  7707.                                 Contributed by Steve Turner
  7708.                         [extracted from the ProFrame 1.1.0 datasheet]
  7709.  
  7710.    Last modified: _6/13/1997_
  7711.    
  7712.     9. How does CVS differ from CaseWare/CM? 
  7713.     
  7714.    CaseWare/CM is a software configuration management product from
  7715.    CaseWare, Inc. CaseWare/CM may be customized to support a wide variety
  7716.    of methodologies, including various phases of the software lifecycle,
  7717.    and different access rights for users.
  7718.    
  7719.    A GUI is provided to view version histories and configurations. A
  7720.    merge tools is also included. CaseWare supports type-specific
  7721.    lifecycles, which allows different types of files to move through
  7722.    different lifecycles. Also provided is a build facility to support
  7723.    automatic dependency analysis, parallel, distributed, and remote
  7724.    builds, and variant releases.
  7725.    
  7726.    CaseWare/CM has been integrated with other CASE tools, including
  7727.    FrameMaker, ALSYS Ada, CodeCenter/Object Center, HP SoftBench, and
  7728.    Software Through Pictures. CaseWare also offers CaseWare/PT, a problem
  7729.    tracking system to integrate change requests with configuration
  7730.    management.
  7731.    
  7732.    Multiple vendors and operating systems are supported.
  7733.    
  7734.    For more information, contact:
  7735.    
  7736.    CaseWare, Inc. 108 Pacifica, 2nd Floor Irvine, CA 92718-3332 (714)
  7737.    453-2200 (phone) (714) 453-2276 (fax)
  7738.    
  7739.                                 Contributed by Steve Turner
  7740.                         [extracted from the CaseWare/CM data sheet]
  7741.  
  7742.    Last modified: _6/13/1997_
  7743.    
  7744.     10. How does CVS differ from SABLIME? 
  7745.     
  7746.    Produced by AT&T. Sablime uses SCCS as the underlying source code
  7747.    control system. It uses some other control system (called sbcs I
  7748.    think) for managing binary files. It uses lock, edit, comit, unlock
  7749.    mechanism. It has a motif based GUI and curses based GUI (that works
  7750.    only with ksh, not tcsh, or bash) to do more common tasks. It has even
  7751.    a command line interface.
  7752.    
  7753.    Changing source happens as a result of MR. A testing person or a
  7754.    developer assigns an MR (modification request) to a group of people.
  7755.    They are allowed to take out files under that MR and change them and
  7756.    check them back in. You can set up dependencies between and MR and do
  7757.    release management to say "I want the sources to include these MRs"
  7758.    etc. It is a reasonably good maintanance system. It is bit heavy
  7759.    weight though, and the interface is not too polished and does not work
  7760.    on windows (though that may have changed). rama@savera.com
  7761.    
  7762.    Last modified: _7/30/1998_
  7763.    
  7764.     11. How does CVS differ from PVCS? 
  7765.     
  7766.    PVCS works on single files like RCS and SCCS, CVS works on complete
  7767.    subsystems. PVCS has a make utility (called a configuration builder),
  7768.    CVS does not. PVCS has a GUI interface for Unix, DOS, OS/2, and MS
  7769.    Windows.
  7770.    
  7771.                 Intersolv, Inc.
  7772.                 1700 NW 167th Place
  7773.                 OR 97006
  7774.  
  7775.                                 Contributed by Per Abrahamsen
  7776.                         [Extracted from Intersolv Marketing literature.]
  7777.  
  7778.    Last modified: _6/13/1997_
  7779.    
  7780.     12. How does CVS differ from CMVC? 
  7781.     
  7782.    CMVC is an IBM Configuration Management and Version Control system.
  7783.    (Though I'm not certain that's the right acronym expansion.) It runs
  7784.    on Suns, HPs, RS6000s, OS/2 and Windows.
  7785.    
  7786.    Other than revision control, it apparently has features to manage
  7787.    releases, bug tracking and the connection between alterations and
  7788.    reported bugs and feature requests. It is a client/server system,
  7789.    based on a choice of commercial Relational Database systems, and it
  7790.    provides a Motif or command line interface.
  7791.    
  7792.    Unlike CVS, it uses a strict locking protocol to serialize source code
  7793.    alterations.
  7794.    
  7795.    Last modified: _6/13/1997_
  7796.    
  7797.   Category: /What_is_CVS_/What_do_you_mean_by_/
  7798.   
  7799.    " + What do you mean by . . .? (Definitions)"
  7800.    
  7801.     1. What are "The Repository", "$CVSROOT" and "CVSROOT"? 
  7802.     
  7803.    The Repository is a directory tree containing the CVS administrative
  7804.    files and all the RCS files that constitute "imported" or "committed"
  7805.    work. The Repository is kept in a shared area, separate from the
  7806.    working areas of all developers.
  7807.    
  7808.    Users of CVS must set their "CVSROOT" environment variable to the
  7809.    absolute pathname of the head of the Repository. Most command line
  7810.    interpreters replace an instance of "$CVSROOT" with the value of the
  7811.    "CVSROOT" environment variable. By analogy, in this document
  7812.    "$CVSROOT" is used as shorthand for "the absolute pathname of the
  7813.    directory at the head of the Repository".
  7814.    
  7815.    One of the things found in $CVSROOT is a directory named CVSROOT. It
  7816.    contains all the "state", the administrative files, that CVS needs
  7817.    during execution. The "modules", "history", "commitinfo", "loginfo"
  7818.    and other files can be found there. See 4B.2 for more information
  7819.    about CVSROOT files.
  7820.    
  7821.    Last modified: _6/13/1997_
  7822.    
  7823.     2. What is an RCS file? 
  7824.     
  7825.    An RCS file is a text file containing the source text and the revision
  7826.    history for all committed revisions of a source file. It is stored
  7827.    separately from the working files, in a directory hierarchy, called
  7828.    the Repository.
  7829.    
  7830.    RCS is the "Revision Control System" that CVS uses to manage
  7831.    individual files. RCS file names normally end in ",v", but that can be
  7832.    altered (via the RCS -x option) to conform to file naming standards on
  7833.    platforms with unusual filename limitations.
  7834.    
  7835.    Last modified: _6/13/1997_
  7836.    
  7837.     3. What is a working file? 
  7838.     
  7839.    A working file is a disk file containing a checked-out copy of a
  7840.    source file that earlier had been placed under CVS. If the working
  7841.    file has been edited, the changes since the last committed revision
  7842.    are invisible to other users of CVS.
  7843.    
  7844.    Last modified: _6/13/1997_
  7845.    
  7846.     4. What is a working directory (or working area)? 
  7847.     
  7848.    A working directory is the place where you work and the place from
  7849.    which you "commit" files.
  7850.    
  7851.    The "checkout" command creates a tree of working directories, filling
  7852.    them with working files. Each working directory contains a
  7853.    sub-directory named ./CVS containing three administrative files, which
  7854.    are created by "checkout" and are always present:
  7855.    
  7856.    ./CVS/Entries
  7857.                 contains information about working files.
  7858.  
  7859.    ./CVS/Repository
  7860.                 contains the location of the directory within the
  7861.                 Repository that was used to create the working directory.
  7862.  
  7863.    ./CVS/Root
  7864.                 contains the value of $CVSROOT at the time you created
  7865.                 the working directory.
  7866.  
  7867.    Other files may also appear in ./CVS depending on the state of your
  7868.    working directory:
  7869.    
  7870.    ./CVS/Tag
  7871.                 contains the "sticky tag" associated with the whole
  7872.                 directory.  See 3A.2 for its main purpose.
  7873.                 [Created by "checkout" or "update" when using "-r <tag>".]
  7874.                 [Deleted by "checkout" or "update" when using '-A'.]
  7875.  
  7876.    ./CVS/Entries.Static
  7877.                 contains a fixed list of working files.  If this file
  7878.                 exists, an "update" doesn't automatically bring newly
  7879.                 added files out of the Repository.
  7880.                 [Created and maintained by hand.]
  7881.  
  7882.    ./CVS/Checkin.prog
  7883.                 contains a program to run whenever anything in the
  7884.                 working directory is committed.
  7885.                 [Created by checkout if "-i <prog>" appears in the
  7886.                  modules file for the checked-out module.]
  7887.  
  7888.    ./CVS/Update.prog
  7889.                 contains a program to run whenever anything in the
  7890.                 working directory is updated.
  7891.                 [Created by checkout if "-u <prog>" appears in the
  7892.                  modules file for the checked-out module.]
  7893.  
  7894.    ./CVS/<file>,p ./CVS/<file>,t
  7895.                 contain (possibly zero-length) state information about an
  7896.                 "add" that has not been committed.
  7897.                 [Created by "add".]
  7898.                 [Deleted by "commit" or "remove".]
  7899.  
  7900.    Last modified: _6/13/1997_
  7901.    
  7902.     5. What is "checking out"? 
  7903.     
  7904.    "Checking out" is the act of using the "checkout" command to copy a
  7905.    particular revision from a set of RCS files into your working area.
  7906.    You normally execute "checkout" only once per working directory (or
  7907.    tree of working directories), maintaining them thereafter with the
  7908.    "update" command.
  7909.    
  7910.    See section 3C on the "checkout" command.
  7911.    
  7912.    Last modified: _6/13/1997_
  7913.    
  7914.     6. What is a revision? 
  7915.     
  7916.    A "revision" is a version of a file that was "committed" ("checked
  7917.    in", in RCS terms) some time in the past. CVS (and RCS) can retrieve
  7918.    any file that was committed by specifying its revision number or its
  7919.    "tag" ("symbolic name", in RCS terms).
  7920.    
  7921.    In CVS, a "tag" is more useful than a revision number. It usually
  7922.    marks a milestone in development represented by different revision
  7923.    numbers in different files, all available as one "tagged" collection.
  7924.    
  7925.    Sometimes the word "revision" is used as shorthand for "the file you
  7926.    get if you retrieve (via "checkout" or "update") the given revision
  7927.    from the Repository."
  7928.    
  7929.    Last modified: _6/13/1997_
  7930.    
  7931.     7. What is a "Tag"? 
  7932.     
  7933.    A "Tag" is a symbolic name, a synonym or alias for a particular
  7934.    revision number in a file. The CVS "tag" command places the same "Tag"
  7935.    on all files in a working directory, allowing you to retrieve those
  7936.    files by name in the future.
  7937.    
  7938.    The CVS "Tag" is implemented by applying RCS "symbols" to each
  7939.    individual file. The Tags on a file (or collection of files) may be
  7940.    displayed using the "log" command.
  7941.    
  7942.    Last modified: _6/13/1997_
  7943.    
  7944.     8. What are "HEAD" and "BASE"? 
  7945.     
  7946.    HEAD and BASE are built-in tags that don't show up in the "log" or
  7947.    "status" listings. They are interpreted directly by CVS.
  7948.    
  7949.    "HEAD" refers to the latest revision on the current branch in the
  7950.    Repository. The current branch is either the main line of development,
  7951.    or a branch in development created by placing a branch tag on a set of
  7952.    files and checking out that branch.
  7953.    
  7954.    "BASE" refers to the revision on the current branch you last checked
  7955.    out, updated, or committed. If you have not modified your working
  7956.    file, "BASE" is the committed revision matching it.
  7957.    
  7958.    Most of the time BASE and HEAD refer to the same revision. They can
  7959.    become different in two ways:
  7960.    
  7961.      Someone else changed HEAD by committing a new revision of your file
  7962.    to the Repository. You can pull BASE up to equal HEAD by executing
  7963.    "update".
  7964.    
  7965.      You moved BASE backward by executing "checkout" or "update" with the
  7966.    option "-r <rev/tag>" or "-D <date>". CVS records a sticky tag and
  7967.    moves your files to the specified earlier revision. You can clear the
  7968.    sticky tag and pull BASE up to equal HEAD again by executing "update
  7969.    -A".
  7970.    
  7971.    Last modified: _6/13/1997_
  7972.    
  7973.     9. What is a Branch? 
  7974.     
  7975.    In general, a branch is any mechanism that allows one or more
  7976.    developers to modify a file without affecting anyone other than those
  7977.    working on the same branch.
  7978.    
  7979.    There are four kinds of "branch" CVS can manage:
  7980.    
  7981.      The Vendor Branch.
  7982.    
  7983.    A single vendor branch is supported. The "import" command takes a
  7984.    sequence of releases from a source code vendor (called a "vendor" even
  7985.    if no money is involved), placing them on a special "Vendor" branch.
  7986.    The Vendor branch is considered part of the "Main line" of
  7987.    development, though it must be merged into locally modified files on
  7988.    the RCS Main branch before the "import" is complete.
  7989.    
  7990.    See Section 3H ("import").
  7991.    
  7992.      Your Working directory.
  7993.    
  7994.    A checked-out working directory, can be treated like a private branch.
  7995.    No one but you can touch your files. You have complete control over
  7996.    when you include work committed by others. However, you can't commit
  7997.    or tag intermediate versions of your work.
  7998.    
  7999.      A Development branch.
  8000.    
  8001.    A group of developers can share changes among the group, without
  8002.    affecting the Main line of development, by creating a branch. Only
  8003.    those who have checked-out the branch see the changes committed to
  8004.    that branch. This kind of branch is usually temporary, collapsing
  8005.    (i.e. merge and forget) into the Main line when the project requiring
  8006.    the branch is completed.
  8007.    
  8008.    You can also create a private branch of this type, allowing an
  8009.    individual to commit (and tag) intermediate revisions without changing
  8010.    the Main line. It should be managed exactly like a Development Branch
  8011.    -- collapsed into the Main line (or its parent branch, if that is not
  8012.    the Main Branch) and forgotten when the work is done.
  8013.    
  8014.      A Release branch.
  8015.    
  8016.    At release time, a branch should be created marking what was released.
  8017.    Later, small changes (sometimes called "patches") can be made to the
  8018.    release without including everything else on the Main line of
  8019.    development. You avoid forcing the customer to accept new, possibly
  8020.    untested, features added since the release. This is also the way to
  8021.    correct bugs found during testing in an environment where other
  8022.    developers have continued to commit to the Main line while you are
  8023.    testing and packaging the release.
  8024.    
  8025.    Although the internal format of this type of branch (branch tag and
  8026.    RCS branches) is the same as in a development branch, its purpose and
  8027.    the way it is managed are different. The major difference is that a
  8028.    Release branch is normally Permanent. Once you let a release out the
  8029.    door to customers, or to the next stage of whatever process you are
  8030.    using, you should retain forever the branch marking that release.
  8031.    
  8032.    Since the branch is permanent, you cannot incorporate the branch fixes
  8033.    into the Main line by "collapsing" (merging and forgetting) the
  8034.    release branch. For large changes to many files on the release branch,
  8035.    you will have to perform a branch merge using "update -j <rev> -j
  8036.    <rev>". (See 4C.7)
  8037.    
  8038.    The most common way to merge small changes back into Main line
  8039.    development is to make the change in both places simultaneously. This
  8040.    is faster than trying to perform a selective merge.
  8041.    
  8042.    See 1D.12 (merges) and Section 4C, on Branching for more info.
  8043.    
  8044.    Last modified: _6/13/1997_
  8045.    
  8046.     10. What is "the trunk"? 
  8047.     
  8048.    Another name for the RCS Main Branch. The RCS Main Branch is related,
  8049.    but not equivalent, to both the CVS Main branch and what developers
  8050.    consider to be the Main line of development. See 3H.3 and Section 4C
  8051.    on Branching.
  8052.    
  8053.    Last modified: _6/13/1997_
  8054.    
  8055.     11. What is a module? 
  8056.     
  8057.    In essence, a module is a name you hand to the "checkout" command to
  8058.    retrieve one or more files to work on. It was originally intended to
  8059.    be a simple, unique name in the "modules" file attached to a directory
  8060.    or a subset of files within a directory.
  8061.    
  8062.    The module idea is now a somewhat slippery concept that can be defined
  8063.    in two different ways:
  8064.      * A module is an argument to "checkout". There are three types:
  8065.          1. An entry in the modules file. A "module" name as described in
  8066.             'B.' below.
  8067.          2. A relative path to a directory or file in the Repository.
  8068.          3. A mixed-mode string of "modulename/relative-path". Everything
  8069.             up to the first slash ('/') is looked up as a module. The
  8070.             relative path is appended to the directory associated with
  8071.             the module name and the resulting path is checked out as in
  8072.             #2 above.
  8073.      * A module is a unique (within the file) character string in the
  8074.        first column of the modules file. There are five types:
  8075.          1. A name for a directory within the Repository that allows you
  8076.             to ignore the parent directories above it.
  8077.             Example:
  8078.                   emacs  gnu/emacs
  8079.          2. A name for a subset of the files within such a directory.
  8080.             Example:
  8081.                   ls    unix/bin Makefile ls.c
  8082.             The 2nd through Nth strings in the above can be files,
  8083.             directories or module substitutions. No relative paths.
  8084.             A module substitution occurs when you use a '&module-name'
  8085.             reference. The module-name referred to is logically
  8086.             substituted for the '&module-name' string.
  8087.          3. A relative pathname to a directory within the Repository
  8088.             which, when checked out, creates an image of part of the
  8089.             Repository structure in your current directory.
  8090.             Example:
  8091.             gnu/emacs -o /bin/emacs.helper gnu/emacs
  8092.             The files checked out are exactly the same as the files
  8093.             "checkout" would retrieve if the path weren't even in the
  8094.             modules file. The only reason to put this kind of relative
  8095.             pathname into the modules file is to hook one of the helper
  8096.             functions onto it.
  8097.          4. A relative pathname to a single file within the Repository
  8098.             which, when checked out, creates something you probably don't
  8099.             want: It creates a directory by the name of the file and puts
  8100.             the file in it.
  8101.             Example:
  8102.             gnu/emacs/Makefile -o /bin/emacs.helper gnu/emacs Makefile
  8103.             The file checked out is the same as what you would get if you
  8104.             handed the relative pathname to the "checkout" command. But
  8105.             it puts it in a strange place. The only reason to do this is
  8106.             to hook a helper function onto a specific file name.
  8107.          5. An alias consisting of a list of any of the above, including
  8108.             other aliases, plus exceptions.
  8109.             Example:
  8110.             my_work -a emacs !emacs/tests gnu/bison unix/bin/ls.c
  8111.             The exception "!emacs/test" above is functionally equivalent
  8112.             to specifying "!emacs/tests" on the "checkout" command line.
  8113.        
  8114.    Another way to look at it is that the modules file is simply another
  8115.    way to "name" files. The hierarchical directory structure provides
  8116.    another. You should use whatever turns out to be simplest for your
  8117.    development group.
  8118.    
  8119.    See 4G.2 for some specific ideas about how to use the modules file.
  8120.    
  8121.    Last modified: _11/12/1997_
  8122.    
  8123.     12. What does "merge" mean? 
  8124.     
  8125.    A merge is a way of combining changes made in two independent copies
  8126.    of a common starting file. Checking out an RCS revision produces a
  8127.    file, so for the purposes of a merge "file" and "revision" are
  8128.    equivalent. So, we can say there are always three "files" involved in
  8129.    a merge:
  8130.    
  8131.      The original, starting, "base" or "branch point" file.
  8132.    
  8133.      A copy of the base file modified in one way.
  8134.    
  8135.      Another copy of the base file modified in a different way.
  8136.    
  8137.    Humans aren't very good at handling three things at once, so the
  8138.    terminology dealing with merges can become strained. One way to think
  8139.    about it is that all merges are performed by inserting the difference
  8140.    between a base revision and a later revision (committed by someone
  8141.    else) into your working file. Both the "later" revision and your
  8142.    working file are presumed to have started life as a copy of the "base"
  8143.    revision.
  8144.    
  8145.    In CVS, there are three main types of "merge":
  8146.    
  8147.      The "update" command automatically merges revisions committed by
  8148.    others into your working file. In this case, the three files involved
  8149.    in the merge are:
  8150.    
  8151.    Base: The revision you originally checked out. Later: A revision
  8152.    committed onto the current branch after you checked out the Base
  8153.    revision. Working: Your working file. The one lying in the working
  8154.    directory containing changes you have made.
  8155.    
  8156.      The "update -j <branch_tag> {optional files}" command merges changes
  8157.    made on the given branch into your working files, which is presumed to
  8158.    be on the Main line of development.
  8159.    
  8160.    See 4C.6
  8161.    
  8162.      The "update -j <rev> -j <rev> {optional files}" command merges the
  8163.    difference between two specified revisions into files in your working
  8164.    directory. The two revisions <rev> are usually on the same branch and,
  8165.    when updating multiple files, they are most useful when they are Tag
  8166.    names rather than numeric revisions.
  8167.    
  8168.    See 4C.7
  8169.    
  8170.    Last modified: _6/13/1997_
  8171.    
  8172.   Category: /What_is_CVS_/What_is_CVS_Whats_it/
  8173.   
  8174.    " + What is CVS? What's it for? Why CVS?"
  8175.    
  8176.     1. What does CVS stand for? Can you describe it in one sentence? 
  8177.     
  8178.    "CVS" is an acronym for the "Concurrent Versions System".
  8179.    
  8180.    CVS is a "Source Control" or "Revision Control" tool designed to keep
  8181.    track of source changes made by groups of developers working on the
  8182.    same files, allowing them to stay in sync with each other as each
  8183.    individual chooses.
  8184.    
  8185.    Last modified: _6/13/1997_
  8186.    
  8187.     2. What is CVS for? What does it do for me? 
  8188.     
  8189.    CVS is used to keep track of collections of files in a shared
  8190.    directory called "The Repository". Each collection of files can be
  8191.    given a "module" name, which is used to "checkout" that collection.
  8192.    
  8193.    After checkout, files can be modified (using your favorite editor),
  8194.    "committed" back into the Repository and compared against earlier
  8195.    revisions. Collections of files can be "tagged" with a symbolic name
  8196.    for later retrieval.
  8197.    
  8198.    You can add new files, remove files you no longer want, ask for
  8199.    information about sets of files in three different ways, produce patch
  8200.    "diffs" from a base revision and merge the committed changes of other
  8201.    developers into your working files.
  8202.    
  8203.    Last modified: _6/13/1997_
  8204.    
  8205.     3. How does CVS work? 
  8206.     
  8207.    CVS saves its version-control information in RCS files stored in a
  8208.    directory hierarchy, called the Repository, which is separate from the
  8209.    user's working directory.
  8210.    
  8211.    Files in the Repository are stored in a format dictated by the RCS
  8212.    commands CVS uses to do much of its real work. RCS files are standard
  8213.    byte-stream files with an internal format described by keywords stored
  8214.    in the files themselves.
  8215.    
  8216.    To begin work, you execute a "checkout" command, handing it a module
  8217.    name or directory path (relative to the $CVSROOT variable) you want to
  8218.    work on. CVS copies the latest revision of each file in the specified
  8219.    module or directory out of the Repository and into a directory tree
  8220.    created in your current directory. You may specify a particular branch
  8221.    to work on by symbolic name if you don't want to work on the default
  8222.    (main or trunk) branch.
  8223.    
  8224.    You may then modify files in the new directory tree, build them into
  8225.    output files and test the results. When you want to make your changes
  8226.    available to other developers, you "commit" them back into the
  8227.    Repository.
  8228.    
  8229.    Other developers can check out the same files at the same time. To
  8230.    merge the committed work of others into your working files you use the
  8231.    "update" command. When your merged files build and test correctly, you
  8232.    may commit the merged result. This method is referred to as
  8233.    "copy-modify-merge", which does not require locks on the source files.
  8234.    
  8235.    At any time, usually at some milestone, you can "tag" the committed
  8236.    files, producing a symbolic name that can be handed to a future
  8237.    "checkout" command. A special form of "tag" produces a branch in
  8238.    development, as usually happens at "release" time.
  8239.    
  8240.    When you no longer plan to modify or refer to your local copy of the
  8241.    files, they can be removed.
  8242.    
  8243.    Last modified: _6/13/1997_
  8244.    
  8245.     4. What is CVS useful for? 
  8246.     
  8247.    CVS is intended to handle source control for files in three major
  8248.    situations:
  8249.    
  8250.      Multiple developers working on the same files.
  8251.    
  8252.    The major advantage of using CVS over the simpler tools like RCS or
  8253.    SCCS is that it allows multiple developers to work on the same sources
  8254.    at the same time.
  8255.    
  8256.    The shared Repository provides a rendezvous for committed sources that
  8257.    allows developers a fair amount of flexibility in how often to publish
  8258.    (via the "commit" command) changes or include work committed by others
  8259.    (via the "update" command).
  8260.    
  8261.      Tracking a stream of releases from a source vendor.
  8262.    
  8263.    If you are making changes to sources distributed by someone else, the
  8264.    CVS feature, called the Vendor Branch, allows you to combine local
  8265.    modifications with repeated vendor releases.
  8266.    
  8267.    I have found this most useful when dealing with sources from three
  8268.    major classes of source vendor:
  8269.    
  8270.      Large companies who send you tapes full of the latest release (e.g.
  8271.    Unix OS vendors, database companies).
  8272.    
  8273.      Public Domain software which *always* requires work.
  8274.    
  8275.      Pseudo-Public sources which may require work. (e.g. GNU programs, X,
  8276.    CVS itself, etc.)
  8277.    
  8278.      Branching development.
  8279.    
  8280.    Aside from the "Vendor Branch", there are three kinds of "branches in
  8281.    development" that CVS can support:
  8282.    
  8283.      Your working directory can be treated as a private branch.
  8284.    
  8285.      A Development branch can be shared by one or more developers.
  8286.    
  8287.      At release time, a branch is usually created for bug fixes.
  8288.    
  8289.    (See 1D.9 and Section 4C for more info on branches.)
  8290.    
  8291.    CVS's branch support is a bit primitive, but it was designed to allow
  8292.    you to create branches, work on them for while and merge them back
  8293.    into the main line of development. You should also be able to merge
  8294.    work performed on the main branch into the branch you are working on.
  8295.    Arbitrary sharing and merging between branches is not currently
  8296.    supported.
  8297.    
  8298.    Last modified: _6/13/1997_
  8299.    
  8300.     5. What is CVS *not* useful for? 
  8301.     
  8302.    CVS is not a build system.
  8303.    
  8304.    Though the structure of your Repository and modules file interact with
  8305.    your build system (e.g. a tree of Makefiles), they are essentially
  8306.    independent.
  8307.    
  8308.    CVS does not dictate how you build anything. It merely stores files
  8309.    for retrieval in a tree structure you devise.
  8310.    
  8311.    CVS does not dictate how to use disk space in the checked out working
  8312.    directories. If you require your Makefiles or build procedures to know
  8313.    the relative positions of everything else, you wind up requiring the
  8314.    entire Repository to be checked out. That's simply bad planning.
  8315.    
  8316.    If you modularize your work, and construct a build system that will
  8317.    share files (via links, mounts, VPATH in Makefiles, etc.), you can
  8318.    arrange your disk usage however you like.
  8319.    
  8320.    But you have to remember that *any* such system is a lot of work to
  8321.    construct and maintain. CVS does not address the issues involved. You
  8322.    must use your brain and a collection of other tools to provide a build
  8323.    scheme to match your plans.
  8324.    
  8325.    Of course, you should use CVS to maintain the tools created to support
  8326.    such a build system (scripts, Makefiles, etc).
  8327.    
  8328.    CVS is not a substitute for management.
  8329.    
  8330.    You and your project leaders are expected to plan what you are doing.
  8331.    Everyone involved must be aware of schedules, merge points, branch
  8332.    names, release dates and the range of procedures needed to build
  8333.    products. (If you produce it and someone else uses it, it is a
  8334.    product.) CVS can't cover for a failure to manage your project.
  8335.    
  8336.    CVS is an instrument for making sources dance to your tune. But you
  8337.    are the piper and the composer. No instrument plays itself or writes
  8338.    its own music.
  8339.    
  8340.    CVS is not a substitute for developer communication.
  8341.    
  8342.    When faced with conflicts within a single file, most developers manage
  8343.    to resolve them without too much effort. But a more general definition
  8344.    of "conflict" includes problems too difficult to solve without
  8345.    communication between developers.
  8346.    
  8347.    CVS cannot determine when simultaneous changes within a single file,
  8348.    or across a whole collection of files, will logically conflict with
  8349.    one another. Its concept of a "conflict" is purely textual, arising
  8350.    when two changes to the same base file are near enough to spook the
  8351.    merge command into dropping conflict markers into the merged file.
  8352.    
  8353.    CVS is not capable of figuring out distributed conflicts in program
  8354.    logic. For example, if you change the arguments to function X defined
  8355.    in file A and, at the same time, edit file B, adding new calls to
  8356.    function X using the old arguments. You are outside the realm of CVS's
  8357.    competence.
  8358.    
  8359.    Acquire the habit of reading specs and talking to your peers.
  8360.    
  8361.    CVS is not a configuration management system.
  8362.    
  8363.    CVS is a source control system. The phrase "configuration management"
  8364.    is a marketing term, not an industry-recognized set of functions.
  8365.    
  8366.    A true "configuration management system" would contain elements of the
  8367.    following:
  8368.    
  8369.                 * Source control.
  8370.                 * Dependency tracking.
  8371.                 * Build systems (i.e. What to build and how to find
  8372.                   things during a build.  What is shared?  What is local?)
  8373.                 * Bug tracking.
  8374.                 * Automated Testing procedures.
  8375.                 * Release Engineering documentation and procedures.
  8376.                 * Tape Construction.
  8377.                 * Customer Installation.
  8378.                 * A way for users to run different versions of the same
  8379.                   software on the same host at the same time.
  8380.  
  8381.    CVS provides only the first.
  8382.    
  8383.    Last modified: _6/13/1997_
  8384.    
  8385.   Category: /What_is_CVS_/Where_do_I_find_CVS_/
  8386.   
  8387.    " + Where do I find CVS? Where can I find Help?"
  8388.    
  8389.     1. How do I get more information about CVS? 
  8390.     
  8391.      The first thing I would do is to read the Info file that comes with
  8392.    the CVS sources under "doc". You can format and read the cvs.texinfo
  8393.    file in two ways: 1. Use TeX to format it and a "dvips" command to
  8394.    print it and 2. Install the cvs.info files that are created by the
  8395.    Makefile and read them online using the Emacs "info-mode" or a
  8396.    stand-alone "info" reader.
  8397.    
  8398.      Then I'd run "cvsinit" to set up a Repository and read the man page
  8399.    while trying out the commands.
  8400.    
  8401.    Type "cvs -H" for general help or "cvs -H command" for
  8402.    command-specific help.
  8403.    
  8404.      For background, you can read the original CVS paper (in the source
  8405.    tree, under "doc"). It describes the purpose of CVS and some of how it
  8406.    was designed. Note that the emphasis of the document (especially on
  8407.    multiple vendors providing the same sources) is somewhat out of date.
  8408.    
  8409.      For more detailed information about "internals", read the man pages
  8410.    for RCS. If you are a programmer, you can also read the source code to
  8411.    CVS.
  8412.    
  8413.      Other information and tutorials may be available in the "doc"
  8414.    directory of the FTP archive described below.
  8415.    
  8416.      For current information, and a fair amount of detail, join the
  8417.    info-cvs mailing list described below.
  8418.    
  8419.    Last modified: _6/13/1997_
  8420.    
  8421.     2. Is there an archive of CVS material? 
  8422.     
  8423.    An anonymous FTP area has been set up. It contains many of the CVS
  8424.    files you might want, including extra documentation, patches and a
  8425.    copy of the latest release.
  8426.    
  8427.                 ftp ftp.delos.com
  8428.                 >>> User:       anonymous
  8429.                 >>> Passwd:
  8430.                 cd /pub/cvs
  8431.                 get README
  8432.                 get Index
  8433.  
  8434.    The README has more (and more up-to-date) information. The Index
  8435.    contains a terse list of what is in the archive.
  8436.    
  8437.    A WWW home page is also available at http://www.delos.com/cvs.
  8438.    
  8439.                           This Didn't Exist 6/23/1998
  8440.                                        
  8441.    Last modified: _6/24/1998_
  8442.    
  8443.     3. How do I get files out of the archive if I don't have FTP? 
  8444.     
  8445.    Use one of the FTP<->Email servers. These are the ones I've been told
  8446.    about:
  8447.    
  8448.      FTPMAIL service is available from the same host as the FTP server
  8449.    described above. Send mail to "ftpmail@delos.com" containing "help" in
  8450.    the body of the message. For example, on most Unix systems, you can
  8451.    type:
  8452.    
  8453.    echo help | Mail ftpmail@delos.com
  8454.    
  8455.    The FTPMAIL server will respond with a document describing how to use
  8456.    the server. If the "Mail" command doesn't exist on your system, try
  8457.    "mailx", "/usr/ucb/mail" or "/bin/mail".
  8458.    
  8459.      If you are on BITNET, use Princeton's BITFTP server. Type
  8460.    
  8461.    echo 'send help' | Mail bitftp@pucc.princeton.edu
  8462.    
  8463.    (It is likely that only BITNET addresses can use this one.)
  8464.    
  8465.      Other possibilities I've heard of from the net: (Try the one closest
  8466.    to you.)
  8467.    
  8468.    ftpmail@decwrl.dec.com ftpmail@sunsite.unc.edu ftpmail@cs.arizona.edu
  8469.    ftpmail@cs.uow.edu.au ftpmail@doc.ic.ac.uk
  8470.    
  8471.    Last modified: _6/13/1997_
  8472.    
  8473.     4. How do I get a copy of the latest version of CVS? 
  8474.     
  8475.    The latest released version of CVS and all the programs it depends on
  8476.    should be available through anonymous FTP on any FSF archive. The main
  8477.    FSF archive is at "prep.ai.mit.edu". There are mirrors of the FSF
  8478.    archive on UUNET and other large Internet sites.
  8479.    
  8480.                 Program(s)      Suggested revision
  8481.                 -----------     -----------------------
  8482.                 CVS             1.5
  8483.                 RCS             5.7 (latest version available today)
  8484.                 GNU diff        2.7 (or later) [contained in diffutils-2.7]
  8485.                 GDBM            1.5 (or later) [optional]
  8486.  
  8487.    The GNU version of diff is suggested by both the RCS and CVS
  8488.    configuration instructions because it works better than the standard
  8489.    version.
  8490.    
  8491.    It is a good idea not to accept the versions of CVS, RCS or diff you
  8492.    find lying on your system unless you have checked out their
  8493.    provenance. Using inconsistent collections of tools can cause you more
  8494.    trouble than you can probably afford.
  8495.    
  8496.    The FTP archive mentioned above should contain the latest official
  8497.    release of CVS, some official and unofficial patches and possibly
  8498.    complete patched versions of CVS in use somewhere.
  8499.    
  8500.    Last modified: _6/13/1997_
  8501.    
  8502.     5. Is there a mailing list devoted to CVS? How do I find it? 
  8503.     
  8504.    An Internet mailing list named "info-cvs" grew out of the private
  8505.    mailing list used by the CVS 1.3 alpha testers in early 1992.
  8506.    Throughout 1994, the list received an average of 100 messages per
  8507.    month.
  8508.    
  8509.    You can add yourself to the mailing list by sending an Email message
  8510.    to:
  8511.    
  8512.                 info-cvs-request@prep.ai.mit.edu
  8513.  
  8514.    (Don't forget the "-request" or you'll send a message to the whole
  8515.    list, some of whom are capable of remote execution.)
  8516.    
  8517.    Mail to the whole list should be sent to:
  8518.    
  8519.                 info-cvs@prep.ai.mit.edu
  8520.  
  8521.    An archive of the mailing list is maintained in the FTP archive
  8522.    mentioned above.
  8523.    
  8524.    Last modified: _6/13/1997_
  8525.    
  8526.     6. What happened to the CVS Usenet newsgroup I heard about? 
  8527.     
  8528.  
  8529.         A Usenet newsgroup named "gnu.cvs.info" was announced in April
  8530.         1993, with an expected creation date of August, 1993.  However,
  8531.         nothing came of this.
  8532.  
  8533.         If you want to discuss CVS on usenet, the correct group is
  8534.         comp.software.config-mgmt (which also covers other configuration
  8535.         management systems).  Someday it might be possible to create a
  8536.         comp.software.config-mgmt.cvs, but only if there is sufficient
  8537.         CVS traffic on comp.software.config-mgmt.
  8538.  
  8539.         kingdon@cyclic.com
  8540.  
  8541.    Last modified: _9/6/1997_
  8542.      _________________________________________________________________
  8543.    
  8544.    [Add an answer to this category]
  8545.    
  8546.    [Category /]
  8547.      _________________________________________________________________
  8548.    
  8549.    _Search the FAQ-O-Matic:_ ____________________ Search
  8550.    [matching all words]
  8551.    Or look for questions modified in the last: [7.] Days
  8552.      _________________________________________________________________
  8553.    
  8554.    The FAQ-O-Matic lives at http://gille.loria.fr:7000/cgi-bin/faqomatic.
  8555.    The code was written by Jon Howell, and the content by folks from all
  8556.    over the web.
  8557.