Create a tag from a particular commit git / github
- Create a tag from a particular commit and give some message to the tag
git tag -a v1.0.0 fg3ab1b -m "Tagged the first commit with v1.0.0"
- Verify that the tag is created and all the previous tags
git tag -n
- push the tag to remote
git push origin v1.0.0
Search content by categories