🏷️ Tags

How to push tags to remote in Git

Upload local tags to a remote repository.

Push a specific tag
git push origin v1.0.0

Pushes a single tag to the remote.

Push all tags
git push origin --tags

Pushes all local tags to the remote at once.

Push commits and tags together
git push --follow-tags

Pushes commits and any annotated tags that point to those commits.

When to use: Clean way to push a release — commits and tags in one command.

← Back to Git Reference