What are the possible project models in distributed version control? Are there any better article to explain models like Pull only, Shared push, Single source ?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

The successful branching model article is a good start, even if it deals first with branching, before mentioning the collaborative aspect.
It pays to be clear on the branching model first, in order to know what will be published (pull/pushed), and what will not (private branches).

The distributed workflows are introduced in the GitBook, and detailed in Pro Git book, where they are called (and this is not an exhaustive list):

  • Centralized Workflow

Centralized Workflow

  • Integration-Manager Workflow

Integration-Manager Workflow

  • Dictator and Lieutenants Workflow

Dictator and Lieutenants Workflow

link|improve this answer
Are all these models possible with mercurial also? – Jayantha Jun 25 '11 at 0:47
@Jayantha: pretty much, yes, and the basic model is described in HgInit: hginit.com/02.html – VonC Jun 25 '11 at 1:10
feedback

Your Answer

 
or
required, but never shown

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