NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Version control! (Score:1)
I've been keeping my entire home directory under version control for a few years now, and it works great. When I connect to a new machine for the first time, I simply do:
cvs -d:blah:blah:blah co HOMEAnd I get my full home directory, with all of my configs and so on, right away. There's a small quirk though, in that this checks HOME out into a directory called HOME, but I follow it up with:
(cd ./HOME; tar cf - .) | tar xf - ; rm -fr ./HOME
This copies the CVS directories too, so update and commit work as expected. I've been contemplating moving to subversion (see the article below), but I really have no complaints with CVS (although Subversion would allow me to check it out into . and avoid the tar/rm dance).
ONLamp.com [onlamp.com] had an article [onlamp.com] about this a few years ago. The article and comments have tons of good advice.
(darren)
Reply to This
Re:Version control! (Score:2)
svn co svn+ssh://andy@svn.petdance.com/svn/home .--
xoa