From: Oleg Broytman Date: Mon, 24 Aug 2015 12:55:46 +0000 (+0300) Subject: git push --tags X-Git-Url: https://git.phdru.name/?p=git-wiki.git;a=commitdiff_plain;h=0b8f0535710640901b562a0dc213b06f485cc23a git push --tags --- diff --git a/pep-git.txt b/pep-git.txt index c411bd9..8ce2894 100644 --- a/pep-git.txt +++ b/pep-git.txt @@ -355,6 +355,10 @@ tags. To push tags list them explicitly:: $ git push origin tag 1.4.2 $ git push origin v1 master tag 2.1.7 +Or push all tags at once:: + + $ git push --tags origin + Don't move tags with ``git tag -f`` or remove tags with ``git tag -d`` after they have been published.