While on the subject of upgrading, one of the best tips I could offer to someone is to install WordPress via Subversion. I think most people think of using Subversion with trunk, or the “bleeding edge”. Which can be the case, however, it’s just as easy to use a tag. Previously, to check out any version of WordPress via SVN the repository URL was http://svn.automattic.com/wordpress. This always rubbed me the wrong way, as I, like a lot of people, always cringed at the blurring of the line between .org and .com WP entities. Having an automattic URL certainly blurred that line.
However, I noticed today that you can checkout from the .org URL now, specifically, http://core.svn.wordpress.org. If you have been using SVN, and want to change repos, but aren’t familiar with that command, it’s actually quite simple.
Let’s say for example you last checked out the 2.8.3 tag, and want to both switch repos and update. First you need to switch your repository
svn switch --relocate http://svn.automattic.com/wordpress/tags/2.8.3 http://core.svn.wordpress.org/tags/2.8.3, then you simply need to switch to the latest tag, svn switch http://core.svn.wordpress.org/tags/2.8.4
If anyone would like more information on how to do the initial checkout, including switching from a traditional installation to using SVN, please leave a comment and I’ll put together a post.