How to: Use git tag and commit hash as version number for your application

2011-12-21

It is a good practice to use a sane version number for your applications. For example, vx.y.z is a common paradigm. I will not debate the x.y.z vs x.y vs whatever. The purpose of those lines is to ...


How to: Delete a git tag in a remote repository

2011-12-21

We use git tags to manage our versions, and sometime we tag a version like so: 1 git tag v1.0.0 But, we realize that we have one more fix to commit. To do so, we need to delete the tag first, b...