/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tag.py

merge bzr.dev r4054

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Tag strategies.
18
18
 
19
 
These are contained within a branch and normally constructed 
20
 
when the branch is opened.  Clients should typically do 
 
19
These are contained within a branch and normally constructed
 
20
when the branch is opened.  Clients should typically do
21
21
 
22
22
  Branch.tags.add('name', 'value')
23
23
"""
189
189
 
190
190
    def merge_to(self, to_tags, overwrite=False):
191
191
        """Copy tags between repositories if necessary and possible.
192
 
        
193
 
        This method has common command-line behaviour about handling 
 
192
 
 
193
        This method has common command-line behaviour about handling
194
194
        error cases.
195
195
 
196
196
        All new definitions are copied across, except that tags that already
199
199
        :param to_tags: Branch to receive these tags
200
200
        :param overwrite: Overwrite conflicting tags in the target branch
201
201
 
202
 
        :returns: A list of tags that conflicted, each of which is 
 
202
        :returns: A list of tags that conflicted, each of which is
203
203
            (tagname, source_target, dest_target), or None if no copying was
204
204
            done.
205
205
        """