Let's say I'm working on this thing, and I want to preserve this state, so that, if something goes wrong, I can revert to it.

According to this, it's not clear to me:

What should we do when on this situation:

commit or create branch ?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

I think Git Tag is what you are looking for.

http://book.git-scm.com/3_git_tag.html

link|improve this answer
So, commit and then tag. I believe we should avoid tag over usage because we may end up with "stables" that "really aren't" stables further on, or is this a wrong assumption? – MEM Apr 27 '11 at 16:35
Check this webpage kernel.org/pub/software/scm/git/docs/git-tag.html. You can them anything you want and later you can delete then too. – josnidhin Apr 27 '11 at 16:39
feedback

Your Answer

 
or
required, but never shown

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