Reputation: 7826
Could anyone give me any guidelines on when I might want to tag a revision in Mercurial.
For instance would it be a good idea to use them to mark points at which my application gets uploaded?
Upvotes: 3
Views: 225
Reputation: 78340
Tagging on releases is what the Mercurial project itself does:
https://www.mercurial-scm.org/wiki/StandardBranching
you can see the results here:
https://www.mercurial-scm.org/repo/hg/tags
Upvotes: 1
Reputation: 6114
Upvotes: 4
Reputation: 11909
Here is a non exhaustive list of when you might want to tag your code:
You may think that you'll end up with a lot of tags (and that's true), but it really helps to track the status of you development and to avoid that things go wild.
Upvotes: 3
Reputation: 29927
I think it's a good practice to tag a codebase when it's released and you might want to tag it too at the end of a sprint / development cycle.
Upvotes: 1
Reputation: 3230
At our company we use tags when we deploy our applications to our servers.
Upvotes: 1