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

Will git take the pain out of rolling things out? I have multiple sites over two test environments and a live environment?

Replies are listed 'Best First'.
Re^3: Perl apps and version control
by Corion (Patriarch) on Sep 21, 2010 at 11:14 UTC

    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.

      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.