in reply to Re^2: Perl apps and version control
in thread Perl apps and version control

Not better than any other revision control system. I would do the distribution through rsync or some other distribution mechanism. Just check out the "tested good" state and use rsync to distribute it across all machines, or directly check out the "tested good" state on each machine through git, depending on your network setup.

Replies are listed 'Best First'.
Re^4: Perl apps and version control
by Proclus (Beadle) on Sep 21, 2010 at 11:33 UTC
    This is very good advice. I've been also exploring the idea of automating the revision updates (svn in my case) by writing some Perl code.