encourage users to push only their new tag

This commit is contained in:
James Bowes 2012-06-26 10:57:44 -03:00
parent 2486ed3327
commit e6127dedbe
2 changed files with 2 additions and 2 deletions

View file

@ -441,7 +441,7 @@ class VersionTagger(object):
print("Created tag: %s" % new_tag)
print(" View: git show HEAD")
print(" Undo: tito tag -u")
print(" Push: git push && git push --tags")
print(" Push: git push && git push origin %s" % new_tag)
def _check_tag_does_not_exist(self, new_tag):
status, output = commands.getstatusoutput(

View file

@ -35,7 +35,7 @@ to manage the tags and builds. A simple workflow may look like:
.. Build: `tito build --rpm --test`
. Finalize a release
.. Tag: `tito tag`
.. Push: `git push && git push --tags`
.. Push: `git push && git push $ORIGIN $TAG`
.. Build: `tito build [OPTIONS]`