Git tag and push to Github
git tag -a 0.0.1 -m "Tag comment"
git push --tags
Note: The use of major.minor.patch Semantic Versioning is a really good idea.
Git
]
git tag -a 0.0.1 -m "Tag comment"
git push --tags
Note: The use of major.minor.patch Semantic Versioning is a really good idea.
Git
]