Then run this :
git tag -a v1.0.0 594d509 -m "Message here"
Where 594d509
is the beginning part of a commit id (SHA1).
You can omit the -a
and the -m "Message here"
parts if you don't want to add a message:
git tag v1.0.0 594d509
After you release a version or a tag you can push it like:
git push origin v1.0.0