vote up 1 vote down star

Can anyone recommend a good Source Code control (SCC) that works for the mostly disconnected consultant? I'd prefer something that allows one to save into a local repository and then once connected 'syncs' to the server however I've never seen such a feature. Suggestions? [Windows solution is preferred that integrates with standard IDEs the SCCI API].

flag

12 Answers

vote up 0 vote down

If like GUIs, then check plastic. It works both disconnected (well, actually distributed, using your own server at your laptop) and centralized

link|flag
vote up 0 vote down

For Windows you'll be better off with Mercurial. Especially if you're familiar with Subversion.

link|flag
vote up 0 vote down

You can do this with most systems(cvs, svn, git, and so on). As for an application that will automatically sync when connected; I would not recommend this. It is better to commit intentionally. Depending on how you use a repository auto check in could break an active copy in your repository, or pass in code that hasn't been tested yet.

A decent client for subversion in windows is TortoiseSVN. http://tortoisesvn.net/

link|flag
vote up 1 vote down

Assuming you're working with Windows, I'd suggest syncing a local folder using TortoiseSVN on the client side (http://tortoisesvn.tigris.org/) to a VisualSVN Server-based repository on the server side (http://www.visualsvn.com/).

All available free.

link|flag
vote up 0 vote down

You need a distributed source code control.

Wikipedia has a good comparison table of source code controls. I'd say pick the distributed source code control that best suits your needs.

link|flag
vote up 2 vote down

Git may be a good alternative in this case.

From wikipedia: "Git gives each developer a local copy of the entire development history, and changes are copied from one such repository to another. These changes are imported as additional development branches, and can be merged in the same way as a locally developed branch. "

http://git.or.cz/

link|flag
vote up 0 vote down

If you want a full up local repository, it sounds like you might want to look at Mercurial. I haven't used it other than a quick look-see, but it looks very interesting and powerful, and to the best of my knowledge provides a distributed source control process that replicates the repository allowing a disconnected user to still access things that they didn't "checkout" while connected.

link|flag
vote up 0 vote down

Sorry doesnt solve your want to have it merge to multiple repositories but SVN + TortoiseSVN on windows is a good combination. There are also Visual Studio plug ins for SVN if you use VS.

If you need a third party SVN provider i use SVNRepository.com

link|flag
vote up 0 vote down

Bazaar supports this workflow. It is also do able in git, but it's more intuitive in bzr, imho.

link|flag
vote up 3 vote down

You may want to look at git.

It lets you commit things locally, and then resync back to another copy. Its very decentralized and it appears to work in windows.

link|flag
vote up 11 vote down

Any distributed version control service is going to do that. Check out Mercurial or Git.

link|flag
as a Git fan, it saddens me to say that Mercurial works better on Windows (I'm working on a project to remedy that, although there's no telling when I'll ever finish anything useful) – Ben Collins Sep 24 '08 at 1:16
Oh really, what are you working on? msys? tortoise clone? – 1800 INFORMATION Sep 24 '08 at 1:18
vote up 0 vote down

Git may be the closet thing to get to what you want.

link|flag

Your Answer

Get an OpenID
or

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