What is the point to namespaces in branches in git?

Posted by dukeofgaming on Programmers See other posts from Programmers or by dukeofgaming
Published on 2012-10-18T07:13:57Z Indexed on 2012/10/18 11:14 UTC
Read the original article Hit count: 124

Filed under:
|

So I mainly use Mercurial for my projects and I decided to sit down and learn all Git's shenanigans to discover if I'm in the right side (at least for me).

I'm learning that git uses namespaces for branches and I would like to know (in your experience) what is the point of namespaces?. In Mercurial I could just set the convention of naming branches like so:

<branch name> //for "origin" branches
<username>/<branch name> //for user branches

I imagine that there is more to it than just the name (aside from avoiding naming conflicts), but what do I get out of this seemingly more complicated (not necessarily bad) model?

© Programmers or respective owner

Related posts about git

Related posts about mercurial