Sequence NODE_357
Medium

Tag a Release Version & Push Tags

Git & GitHub
Technical Specification

Create an annotated tag for a release (v1.0.0), list tags, and push tags to GitHub.

Input/Output Samples
Input:git tag
Output:v1.0.0 listed
Optimal Logic Path
git tag -a v1.0.0 -m "First stable release"
git push origin v1.0.0
Architectural Deep-Dive
Tags are immutable labels over specific commits, useful for releases and rollbacks.