Wednesday, July 17, 2013

Tagging versions in GIT

As stated in the title, I use this blog to remember stuff, so here is yet another GIT tip.

Adding a tag for a given version:

$ git tag -a v1.4 -m 'my version 1.4'

Displaying tagged versions:
$ git tag
v0.1
v1.3
v1.4

No comments:

Post a Comment