Changeset 1603 in tailor
- Timestamp:
- 06/02/08 16:45:59 (5 years ago)
- Hash name:
- 20080602144559-97f81-bbb277fd2961ff7984bb940a78475c8e76081df9
- Files:
-
- 2 edited
-
README.rst (modified) (1 diff)
-
vcpx/repository/git/target.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
README.rst
r1568 r1603 964 964 implementation misses many tags. 965 965 966 overwrite-tags : bool 967 By default the backend does *not* overwrite previous tag with a 968 newer by the same name, and stops with an error. This flag allows 969 you to force git to override preceeding tag with the same name. 970 971 *False* by default. 972 966 973 hg 967 974 %% -
vcpx/repository/git/target.py
r1474 r1603 172 172 args = ["tag", "-a",] 173 173 if self.repository.overwrite_tags: 174 args.append("-f")174 args.append("-f") 175 175 176 176 # Escape the tag name for git … … 197 197 198 198 if c.exit_status: 199 if not self.repository.overwrite_tags: 200 self.log.critical("Couldn't set tag '%s': maybe it's a " 201 "conflict with a previous tag, and " 202 "overwrite-tags=True may help" % 203 tag_git) 199 204 raise ChangesetApplicationFailure("%s returned status %d" % 200 205 (str(c), c.exit_status))
Note: See TracChangeset
for help on using the changeset viewer.
