Omar
Omar

Reputation: 40182

Do I need to create trunk/branches/tags in a Mercurial repository?

When creating a repository on our central server, do I need to create the folder structure of trunk/branches/tags or does Mercurial take care of all that?

Upvotes: 4

Views: 713

Answers (1)

s.m.
s.m.

Reputation: 8043

Nope, don't do it.

You don't need them in Mercurial.

Edit: in Mercurial, tags and branches are first-class citizens. They get treated differently, whereas they're pretty much the same in Subversion.

You might want to read about branches and named branches, and also this discussion here on SO.

Upvotes: 5

Related Questions