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].
|
|
If like GUIs, then check plastic. It works both disconnected (well, actually distributed, using your own server at your laptop) and centralized |
||
|
|
|
|
For Windows you'll be better off with Mercurial. Especially if you're familiar with Subversion. |
||
|
|
|
|
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/ |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. " |
||
|
|
|
|
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. |
||
|
|
|
|
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 |
||
|
|
|
|
Bazaar supports this workflow. It is also do able in git, but it's more intuitive in bzr, imho. |
||
|
|
|
|
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. |
||
|
|
|
|
|
||||
|
|
|
Git may be the closet thing to get to what you want. |
||
|
|
