Changeset 1308 in tailor


Ignore:
Timestamp:
01/14/07 10:48:42 (6 years ago)
Author:
Alexey Tourbin <at@…>
Hash name:
20070114094842-27c62-aed4a6e354b1eaa79a99d99c1917f24a344647d7
Message:

Pass -a to "git tag", to make annotated tags instead of weak tags

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/repository/git/target.py

    r1307 r1308  
    149149    def _tag(self, tag): 
    150150        # Allow a new tag to overwrite an older one with -f 
    151         cmd = self.repository.command("tag", "-f", tag) 
     151        cmd = self.repository.command("tag", "-a", "-f", "-m", tag, tag) 
    152152        c = GitExternalCommand(self.repository, cwd=self.repository.basedir, command=cmd) 
    153153        c.execute() 
Note: See TracChangeset for help on using the changeset viewer.