I have a repository of tools I have written in php and a repository of application code which will use them. I want the two folders to end up on the same level when I check them out. I tried to accomplish this by setting the svn:externals property for the application folder to
../toolkit http://(toolkit repo url)/
but apparently it can't do this with relative paths. I do not want the toolkit folder to be inside the application folder, I want them on the same level but doing
toolkit http://(toolkit repo url)/
will put the toolkit inside the application folder. Anyone know how I can do what I am trying to do here? (If it matters, I am doing this from the command line not tortise svn or some other program)