I have a repository where I keep all my homemade code, and I was thinking in sharing some of my projects. The question is I don't want to share the full path to my repository, but instead create some links in my website to act as "pointers". Example:

Repository Structure:

repository/
     projectA/
        /trunk
        /branches
        /tags
           /1.0

And my objective is to checkout like:

svn co http://some.address/myproject/1.0

Is it possible?

Note: Of course my webpage and svn repository are hosted in the same place.

link|improve this question

I tried to implement a similar solution a year back using mod rewrite but failed hard on the authentication part. Digest and rewrites didn't mix well. And of course there could problems with having 2 access points to one resource. – Captain Giraffe Apr 25 '11 at 10:16
feedback

1 Answer

up vote 1 down vote accepted

I assume you're using svn in combination with webdav?
You can create permissions for subfolders. For example bob is only able to read tags/1.0/ while alice can read and write to trunk/:

[projectA:/tags/1.0/]
      bob = r

[projectA:/trunk/]
      alice = rw
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.