Posts Tagged ‘subversion’

Relative working copy switching with Subversion

Tuesday, December 11th, 2007

Do you find yourself keeping a Subversion tree for your project similar to this one?

http://myproject.com/svn/
  branches/
    featureful-23/
    fancy-47/
  tags/
  trunk/

Do you find yourself checking out paths like this?

$ svn co http://myproject.com/svn/trunk/ MyProject

And then, do you find yourself switching to a branch in your MyProject directory, like so?

$ svn sw http://myproject.com/svn/branches/featureful-23

Do you ever find it tiring that you have to type that URL so much?

The Python script below might be useful for you then!

(more...)