Quote:
Originally Posted by RoboMaster
Wow, thanks for all these ideas! I'm looking into Bazaar right now, but I haven't checked out some of these other ideas yet.
Does anyone know of any manual methods or protocols that are an option in case we (or anyone reading this thread) don't use any software? Is there a whitepaper or document out there that describes it?
Thanks!!
|
You can always use something like
rsync to keep everything between machines up-to-date, but you'll run into some nasty conflicts if two people edit one file at the same time. I'm sure there's a few FTP-based syncing programs out there if that's more your style.
For offline use you really want a distributed VCS. I'd personally recommend git, but others certainly work. If you have a LAN and want something simple, then subversion works fine. For both there's nice Windows GUI clients (TortiseGit and TortiseSVN, respectively) which help to simplify things a ton. Plus, most IDEs have plugins for it, which are great if you use Java or C++.