diff --git a/tldr/git-tag b/tldr/git-tag index 947dbe78..7b74e8a6 100644 --- a/tldr/git-tag +++ b/tldr/git-tag @@ -29,10 +29,14 @@ source: https://github.com/tldr-pages/tldr.git `git tag -d {{tag_name}}` -- Get updated tags from upstream: +- Get updated tags from remote: `git fetch --tags` +- Push a tag to remote: + +`git push origin tag {{tag_name}}` + - List all tags whose ancestors include a given commit: `git tag --contains {{commit}}`