Tag Archives: subversion

Using Ruby Subversion Bindings to Create Repositories

Subversion has a default Web UI that is served up by Apache if you run Subversion that way. It is pretty boring and read-only. Then there are things like WebSVN that make it less boring, but still read-only. I got … Continue reading

Posted in Code, Ruby | Tagged , , | 1 Comment

Windows Subversion Maintenance Scripts

Previously I wrote about the Subversion Maintenance Scripts that I use for doing things like backups and upgrades. They were bash shell scripts that automated dealing with multiple Subversion repositories. The secret was that those guys were being run using … Continue reading

Posted in Automation | Tagged , , | 3 Comments

Automated Subversion Tagging With MSBuild

I’ve written previously about using MSBuild With Nunit as well as a bit of a Manifesto on Relentless Build Automation. I believe that automating the build and deployment process is a necessary step to ensure the reliable delivery of quality … Continue reading

Posted in .NET, Automation | Tagged , , | Leave a comment

Pragmatic Version Control Using Subversion

My first book review. I’ve recently read Pragmatic Version Control using Subversion by Mike Mason. It’s not a comprehensive Subversion reference but more of a manual about how to use Subversion in the real world. Continue reading

Posted in Automation, Book Review | Tagged , | 1 Comment

Subversion Maintenance Scripts

With the recent release of Subversion 1.4 I’m going through the process of updating repositories. I often like to use multiple repositories because Subversion versions the entire repository with each checkin (Atomic commits rule!). When I do that, I group … Continue reading

Posted in Automation, Code | Tagged , , , | 5 Comments

Getting the Revision Number of your Subversion Working Copy

I was asked today “How do I find out the revision number of my Subversion directory?” and I didn’t know the answer. The good news is there is an easy answer: svnversion . From the svnversion help command: The version … Continue reading

Posted in Code | Tagged | 6 Comments