views:

98

answers:

2

I've already read through some basic Mercurial tutorials. Are there any advanced tutorials?

+5  A: 

If you are advanced enough to abstract between git and Mercurial, I would recommend A Successful Git Branching Model for a good idea about how to manage your development and release branches. The practices described there can be applied to any DVCS.

Thilo
That is a good workflow
Casebash
+1, it's very good. Also, from here on out, just use it! Try out extensions, take a look at `mq`, find out what workflow works for you (biggest decision is whether you prefer rebasing or merging) and then layer it on top of this overall branching model.
shambulator
+2  A: 

hg tip has some good tips (get it?). They're split out into beginner and advanced, but I think they're both worth reading through. Steve Losh (the author) also has a number of good blog posts about mercurial on his blog.

tghw
They look really nice
Casebash