When you've reached a stable version of your code and you've deployed it to users, it is a good practice to tag it.
Start by create a local tag:
git tag v1.0
Check that the tag is correctly created with:
git tag -l
Then push it to your remote repository:
git push --tags
No comments:
Post a Comment