Using Subversion to deploy WordPress
I use Subversion with my websites. Up until now, this has meant creating a new repo for each of my sites. However, this is wholly inefficient as it means me lugging around the whole WordPress source for each of the sites. It also has meant that I have to copy plugins between repos and thus duplicate the code each time.
So what I wanted to do was have a repo which only really contained my theme file (and possibly other site-specific directories such as site-specific plugins). This would then have a link to the tagged WordPress repository for the WordPress version I would be building against and a link to my other shared plugin repos, so that in order to release or deploy for testing I would only have to do a svn checkout svn://path/to/site/repo
and it would download the whole WordPress repo, all my plugins and all the site-specific stuff too.
Is there any way to do this? Or is this a bad idea? Is there an easier/better way to do this at all? How do others do it?
Topic svn version-control Wordpress
Category Web