Git Naming Convention > Tag Naming
May:
- Use Semantic Versioning
- Prefix the version number with the letter v
Suggested Formats:
- With prefix {vX.Y.Z}
- Without prefix {X.Y.Z}
Example:
git tag -a 1.0.2 // or optionally v1.0.2
May:
Suggested Formats:
Example:
git tag -a 1.0.2 // or optionally v1.0.2