Checking out SVN repository through web page
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 开发者_Go百科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.
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
精彩评论