Subversion and TortoiseSVN: Moving a repository

  • September 12, 2008
  • James Skemp
This evening I had to rename a project folder, since I was creating a site with the same name. Since I had the project (application) under Subversion, I also needed to move the repository. Here's what I did: svnadmin create b:\repos\_newName_ svnadmin dump b:\repos\_oldName_ > b:\repos_dump\_oldName_.dump svnadmin load b:\repos\_newName_ < b:\repos_dump\_oldName_.dump At this point I could either checkout the repository, or change where the checked out directory points to. I choose to relocate my working copy by right-clicking on my working directory and selecting Relocate from the TortoiseSVN menu.

Read More

Installing Subversion binaries for Apache 2.2.x

  • August 19, 2008
  • James Skemp
Recently I went ahead and installed Apache 2.2.9 to my Windows Vista Ultimate machine. The purpose of doing that was to move towards a Subversion install running on Apache. In this article, I'll be covering that installation. Getting Subversion Obviously, the first thing to do is to get Subversion. We're looking for the Windows Apache 2.2.x binaries, in particular. At the time of this writing, that's svn-win32-1.5.1.zip. In a previous guide, which you may have followed, I installed the Windows installer with the basic win32 binaries.

Read More

Importing an existing Web site into Subversion

  • July 13, 2008
  • James Skemp
Last time, I played around with Subversion in order to determine just how Subversion worked. This time I'm actually going to create a repository for a site to store the current version, and work through making a couple of updates. Existing site structure The site that I'll be working with is DoNotDenyMyUnicorn.com. It's a small, stable, site, that has just a few files. It's also relatively clean, with no previous versions floating about.

Read More

Playing around with Subversion with a test repository

  • July 12, 2008
  • James Skemp
I've flirted with source/version/revision control since September 2006 (with Subversion), but have never really dug in to actually do anthing with it. But now, that changes. The following guide was created using Subversion 1.4.6 and TortoiseSVN 1.4.8. However, this should still be applicable. Also, because of the number and size of the images, I've limited the images shown directly in the guide. All links to these images should open in a new window.

Read More

Installing TortoiseSVN to Windows Vista

  • June 8, 2008
  • James Skemp
In a previous article, I installed Subversion and TortoiseSVN to a Windows XP Home Edition machine. Later, I upgraded the installation. Just recently I covered installing Subversion 1.4.6 to Windows Vista. This time I'll be installing TortoiseSVN on that same machine. The setup The system I'm using is a HP Pavilion a6360t, with 4GB install RAM, 2.20 GHz, with two cores, running Windows Vista Ultimate SP1, 32-bit. Downloading TortoiseSVN Since TortoiseSVN is for Windows, it makes it even easier to find the version to download.

Read More

Installing Subversion to Windows Vista

  • June 7, 2008
  • James Skemp
In a previous article, I installed Subversion and TortoiseSVN to a Windows XP Home Edition machine. Later, I upgraded the installation. This time I'll be installing Subversion on a Windows Vista Ultimate SP1 machine. The setup The system I'm using is a HP Pavilion a6360t, with 4GB install RAM, 2.20 GHz, with two cores, running Windows Vista Ultimate SP1, 32-bit. I'm already running IIS 7, so I won't be installing Apache to run Subversion.

Read More

Upgrading Subversion and TortoiseSVN on Windows (1.4.0 to 1.4.2)

  • November 26, 2006
  • James Skemp

In a previous article, Installing Subversion and TortoiseSVN to a Windows XP, Home Edition, SP2, local machine with Dreamweaver 8, we installed Subversion 1.4.0 and TortoiseSVN 1.4.0 to our Windows machine. This time, we'll be quickly going over how to upgrade our installation.

Read More

Installing Subversion and TortoiseSVN to a Windows XP, Home Edition, SP2, local machine with Dreamweaver 8

  • September 16, 2006
  • James Skemp
The Subversion aspect has been updated for Windows Vista. So too has the TortoiseSVN installation. The Dreamweaver aspect has not been touched. I also have an article about using Subversion.  When projects become large, or you have the need to keep information on what files you've modified, for any coding project, you may look for some kind of version control system. There's software like Microsoft's SourceSafe, but that can be costly, and according to some, it's a clunky solution.

Read More

Version control systems - any suggestions?

  • September 14, 2006
  • James Skemp
Version control is something that I've been interested in for the past several months (actually, what month is it, September? I guess it's been longer than just a couple of months) but that I haven't been able to dig into as much as I'd like. Subversion keeps coming up as a good piece of software, with the addition of Trac. Since I wrote the guide to installing Apache 2.0.x a bit ago, I have no reason for not getting started with Subversion.

Read More