Merge pull request #242 from xsuchy/explain

explain how automatic tagging was done
This commit is contained in:
Devan Goodwin 2016-12-15 09:13:51 -04:00 committed by GitHub
commit 8ac3f98557

View file

@ -499,7 +499,8 @@ class VersionTagger(ConfigObject):
raise TitoException('Unknown placeholder %s in tag_commit_message_format'
% exc)
run_command('git commit -m %s' % quote(msg))
run_command('git commit -m {0} -m {1} -m {2}'.format(
quote(msg), quote("Created by command:"), quote(" ".join(sys.argv[:]))))
tag_msg = "Tagging package [%s] version [%s] in directory [%s]." % \
(self.project_name, new_version_w_suffix,