Part of bzrlib.tag View In Hierarchy
Known subclasses: bzrlib.tag.BasicTags, bzrlib.tag.DisabledTags
Method | __init__ | Undocumented |
Method | get_tag_dict | Return a dictionary mapping tags to revision ids. |
Method | get_reverse_tag_dict | Return a dictionary mapping revision ids to list of tags. |
Method | merge_to | Merge new tags from this tags container into another. |
Method | set_tag | Set a tag. |
Method | lookup_tag | Look up a tag. |
Method | delete_tag | Delete a tag. |
Method | rename_revisions | Replace revision ids according to a rename map. |
Method | has_tag | Undocumented |
Parameters | to_tags | Tags container to merge into |
overwrite | Whether to overwrite existing, divergent, tags. | |
ignore_master | Do not modify the tags in the target's master branch (if any). Default is false (so the master will be updated). New in bzr 2.3. | |
Returns | Tuple with tag updates as dictionary and tag conflicts |
Parameters | tag_name | Tag name |
revision | Revision id | |
Raises | GhostTagsNotSupported | if revision is not present in the branch repository |
Parameters | tag_name | Tag to look up |
Returns | Matching revision id | |
Raises | NoSuchTag | Raised when tag does not exist |
Parameters | tag_name | Tag to delete |
Raises | NoSuchTag | Raised when tag does not exist |
Parameters | rename_map | Dictionary mapping old revision ids to new revision ids. |