mirror of
https://github.com/rpm-software-management/tito.git
synced 2025-02-23 04:02:46 +00:00
encourage users to push only their new tag
This commit is contained in:
parent
2486ed3327
commit
e6127dedbe
2 changed files with 2 additions and 2 deletions
|
@ -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(
|
||||
|
|
|
@ -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]`
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue