I want to create a versioned profile directory on WinXP. Is a DVCS the best way to do that?

0

I want my Windows XP profile directory (C:\Documents and Settings\) to be versioned, like with Vista Shadow Copies.

What's the best way to accomplish this? Would putting the whole thing under a DVCS like Bazaar or Git be a good way to go? Which one would be best?

jparker

Posted 2009-09-17T14:12:20.550

Reputation: 187

Answers

0

Possibly, possibly not. You would need to periodically add new files and stage changes (git user talking) and commit. Whether this is what you would want or not is another question.

Perhaps one approach might be to have git add/commit every hour or so if there were changes made. You could write a script/set of scripts which handle the check for changes/add/commit processes and run it with a scheduled task for your user every hour. If there are no changes, your script should be sure not to try and commit.

I'm not sure this is an optimal solution, and you will end up using more and more disk space, particularly if you often store a lot of files (will this contain your 'My Music' folder for example?).

Mark Embling

Posted 2009-09-17T14:12:20.550

Reputation: 301