VCS for single user using file sync service

Posted by StackUnder on Programmers See other posts from Programmers or by StackUnder
Published on 2012-10-10T19:48:55Z Indexed on 2012/10/10 21:52 UTC
Read the original article Hit count: 109

Filed under:

I'm trying to setup a version control for my one man project. My project files are in sync thanks to live mesh (but I could be using dropbox for that matter), between my laptop, my home pc and my office pc. I'm now using Netbeans with local file history. Sometimes it helps to revert to a previous state of one file. But imagine a situation when multiple files have problems. Correct me if I'm wrong but I would have to go to every file and revert to previous "safe" state. I don't like this approach, so I'm considering using a version control between SVN and GIT.

I have some previous experience with SVN (TortoiseSVN) and I know that I can create a file:// repo.

So, what a want to do is setup a VCS inside my synced folder just to have the ability to "revert" to a previous version if something goes wrong. Since everything's been synced to all computers, I wouldn't ever need to run an update.

The file tree organization would be the following:

C:...\SyncedFolder\MyProject\

Inside MyProject folder are all the project files plus a directory that has SVN or GIT info of my project (the repo/master).

What VCS is best for this situation: SVN or GIT? Does SVN need to store all files from HEAD revision, thus "duplicating" all my project inside my synced folder? Does GIT eliminates this problem? Is this the best approach?

© Programmers or respective owner

Related posts about version-control