Changes between Version 9 and Version 10 of RcsTeminologyCrossReference


Ignore:
Timestamp:
02/04/12 13:23:13 (16 months ago)
Author:
dustin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RcsTeminologyCrossReference

    v9 v10  
    1  
    2  
    3 = RCS Terminology Cross Reference = 
    4  
    5 Different Revision Control Systems use different terms to describe the same code organization concepts.  Sometimes the concepts are exactly equivalent, sometimes there's an important twist.  Buildbot already abstracts the core concepts quite well.  However there's a big need for more the next layer of RCS complexity to handle more complicated projects.  Some examples are: 
    6  * Watching multiple types of repositories in a single master. 
    7  * Watching multiple separate logical code units in a single repository. 
    8  * Bundling multiple pieces of software into an installer. 
    9  * <Add your convoluted build problem here> 
    10  
    11 The headers are the terms we should use in discussions and code.  The rows are the terms the native repositories use.  This has great bike shed potential, so let's try not to overthink this too much. 
    12 ||'''RCS'''   || '''Change'''|| '''URL''' || '''Code Unit''' || '''Branch''' || '''Tag''' || '''Build directives'''|| '''Revision''' 
    13 || CVS        || diff/patch  ||         ||            ||                     ||     ||            ||   ||  
    14 || SVN        || diff/patch  || svn url || project    || branch              || tag || externals? || revision (int) 
    15 || Git        || delta/patch || git url || module     || branch/fork         || ??  || ??         || sha1 (str) 
    16 || Mercurial  || changeset   || url/path || repository || branch / repository || tag || subrepos?/forest ? || sha1 (str) 
    17 || Darcs      ||             ||         ||            ||                     ||     ||            ||   ||  
    18 || Bazaar     ||             ||         ||            ||                     ||     ||            ||   ||  
    19 || Perforce   ||             ||         ||            ||                     ||     ||            || category?  ||  
    20 || !BitKeeper || changeset   || url(?)  || repository || repository          || tag || ??         || changeset key (str) 
    21  
    22 == References == 
    23  * http://en.wikipedia.org/wiki/Revision_control 
    24  * http://en.wikipedia.org/wiki/Comparison_of_revision_control_software 
     1See [http://buildbot.net/buildbot/docs/latest/developer/definitions.html Definitions] in the documentation.