~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/developers/revision-properties.txt

  • Committer: James Westby
  • Date: 2009-02-27 15:14:34 UTC
  • mto: This revision was merged to the branch mainline in revision 4077.
  • Revision ID: jw+debian@jameswestby.net-20090227151434-kk7lqj62fnqmj2ng
Use a new "authors" revision property to allow multiple authors

The "authors" revision property holds a "\n" separated list of
authors.

"author" is still read, but will be overriden by "authors" if
present.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
At the moment, three standardized revision properties are recognized and used
29
29
by bzrlib:
30
30
 
31
 
 * ``author`` - Authors of the change. This value is a "\n" separated set
 
31
 * ``authors`` - Authors of the change. This value is a "\n" separated set
32
32
   of values in the same format as the committer-id. This property can be
33
33
   set by passing a list to the keyword argument ``authors`` of the function
34
34
   ``MutableTree.commit``.
 
35
 * ``author`` - Single author of the change. This property is deprecated in
 
36
   favour of ``authors``. It should no longer be set by any code, but will
 
37
   still be read. It is ignored if ``authors`` is set in the same revision.
35
38
 * ``branch-nick`` - Nickname of the branch. It's either the directory name
36
39
   or manually set by ``bzr nick``. The value is set automatically in
37
40
   ``MutableTree.commit``.