git tag -a prod-0.9.7 -m 'add analytics'
We use tags to mark release points.
Tags are easy to add:
git tag -a prod-0.9.7 -m "add analytics"Tags do not get pushed with: git push
-- tag option must be added to push the tags:
git push --tagIt is also easy to remove the tags:
git tag -d prod-0.9.7
git push origin :refs/tags/prod-0.9.7Welcome to The infinite monkey theorem
Somewhere a monkey just typed Shakespeare in TypeScript. Be the first to read the masterpieces (and the hilarious misfires) landing on the blog.

