I'm looking for a distributed source control system that will let me do a subversion type checkout. I have several different projects and would like to combine them into one repository. I'd like to be able to have working directorys though much as subversion does so each project doesn't have to be it's own repository. From looking at Mercurial this is not possible since any files have to be stored in a repository in order to track there changes. If anyone knows of a distributed source control system that will let me use working directorys I'd appreciate it.
|
feedback
|
|
The fact that each checkout is its own repository shouldn't be any more inconvenient than the
I consider that a Git checkout is more convenient than a Subversion checkout because there's only one | ||||
feedback
|
|
Is this question about combining several different modules into a single project repository to make working easier? In Subversion, this would be handled with svn:externals. The equivalent in Mercurial is a nested repository. The following questions might prove useful:
Apologies if I've misinterpreted your question. | |||
|
feedback
|
|
SourceGear's Vault supports this, is free for one user, and runs cross platform by supporting Mono. | |||
|
feedback
|
|
Part of the point of "distributed" in "distributed source control" is that all copies are equal - there are no "master" copies and no "slave" or "working" copies. What you seem to be asking for is "distributed source control - but not really." | |||
|
feedback
|