Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 445 Bytes

tag_versions.md

File metadata and controls

11 lines (8 loc) · 445 Bytes

Tags & versions in git

I use git tags to mark the new versions. I can introduce a annotated tag to the current commit with git tag -a v1.4 -m "my version 1.4"

Tags are not pushed by default to origin, either push a tag specifically or use the flag git push --tags

people know more at: