Changeset 199 in tracdarcs for README.rst


Ignore:
Timestamp:
07/30/10 14:08:49 (22 months ago)
Author:
lele@…
Hash name:
20100730120849-7a6fb-6b7c92483ad8f00bbd506a3b70615b4d20432992
Message:

Added a way to group together different repositories, for the "MissingIn?" attribute on changesets

File:
1 edited

Legend:

Unmodified
Added
Removed
  • README.rst

    r191 r199  
    110110__ http://trac.edgewall.org/wiki/0.12/TracRepositoryAdmin#ExplicitSync 
    111111__ http://darcs.net/manual/node7.html#SECTION00712000000000000000 
     112 
     113Related repositories 
     114-------------------- 
     115 
     116When you manage multiple branches of the same darcs repository, you 
     117may find useful to inform trac+darcs about that, so that it will show 
     118additional properties on each changeset: 
     119 
     120* a list of other "instances" of the same patch, that is when the 
     121  changeset is present in other related repositories, 
     122 
     123* a list of related repositories where the changeset is *not* present. 
     124 
     125To do that, you simply group together the related repositories giving 
     126them a common ``identity``, an arbitrary string. 
     127 
     128You can see current identity of a repository with:: 
     129 
     130  $ trac-admin . repository identity master 
     131  No identity set on repository master 
     132 
     133and you can set it with:: 
     134 
     135  $ trac-admin . repository identity master ProjectFoo 
     136  Identity of repository master set to ProjectFoo 
     137 
     138You can adjust it with:: 
     139 
     140  $ trac-admin . repository identity master ProjectBar 
     141  Identity of repository master set to ProjectBar (was ProjectFoo) 
     142 
     143or remove it:: 
     144 
     145  $ trac-admin . repository identity master "" 
     146  Identity removed from repository oldgam 
Note: See TracChangeset for help on using the changeset viewer.