diff --git a/pages/common/git-tag.md b/pages/common/git-tag.md index 74397937f2..eff87c349c 100644 --- a/pages/common/git-tag.md +++ b/pages/common/git-tag.md @@ -24,10 +24,14 @@ `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}}`