I am new to git (been using svn and mercurial for awhile). Is there a way to 'tag' my git repository? Something like tagging it "version 12, removed red square.". I'd like to pull the source state at the time the tag was added, if I ever need to revert to a known snapshot of the code. Is it possible? Would be cool, if a year from now, I'm looking through my repo and can see all my tags, and pull out the code at different states during development,

Thank you

link|improve this question

65% accept rate
3  
Let me Google that for you. – dgnorton Oct 20 '10 at 17:24
feedback

1 Answer

up vote 2 down vote accepted

The command is git tag, read about it with git help tag.

Next time use git help -a to find the obvious answer.

Even if you don't have a tag, you can always go through git log, find the commit you're interested in, and git checkout (or git tag) it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.