Quote Originally Posted by MarcoBarbosa View Post
nice!

so now what?

subversion is installed..and...
how can i link a project in /www to it?

where's the svn link?

I'm trying to figure it out here ^^

EDIT: Ok, so i did the create and imported after a lot of struggle
still doesn't commit but that's another story =P
Thanks for the post
Hi,
I have SVN installed and a repository created!

My question is ... how to checkout my repository?

- svn --version

svn, version 1.4.6 (r28521)
compiled Apr 3 2008, 20:43:14

Then, these are the steps I did to get my repository done and protected:
- htpasswd -c /home/Path_to_password_file newuser
With this I created a password file to give access to my SVN Folder
- svnadmin create /home/path_to_my_repository
With this, I created my repository
- Now, Im trying to include this in my .httaccess to access my repository (using tortoise of any other client):

<Location /svn>
DAV svn
SVNPath /home/path_to_repository
AuthType Basic
AuthName "Subversion Repository!"
AuthUserFile /home/path_to_password_file
Require valid-user
</Location>

Anyway ... this is not working (it messed the whole site actually). I havent been able to checkout my repository (nor commit, but that will come later) ...

Any help? How to access my repository once it is created?

thanks,

Juan