Thanks!
I found out a bit more also.
Here is a followup post I put on their forum:
Hello,
I'm happy to report I got it working.
I did this:
-setup permission attribute in Trac named: SVN_READWRITE
-download a proper SVN for my Mac from here:
http://downloads.open.collab.net/binaries.html
-Know that SVN from tigris tar ball does not work (on my Mac).
-Do something like this:
-checkout:
svn co http://svn.devjavu.com/myproject --username me_at_moi.net
-create code:
cd myproject
rails mywebapp
-commit
svn commit -m "hello world"
On 8/25/07, Ryan Schmidt <subversion-2007b@ryandesign.com> wrote:
>
> On Aug 25, 2007, at 18:05, Bjorn Boulder wrote:
>
> > I am new to the world of hosted SVN.
> >
> > I've used SVN a bit on my Mac.
> >
> > I'd like to use SVN on devjavu to act as a repository for some code
> > I'm writing.
> >
> > Currently on my Mac, I setup a repository like this:
> >
> > PROJECT=w10
> > REPOS_ROOT=/pt/w/hp/svn4w10
> > mkdir -p $REPOS_ROOT
> >
> > svnadmin create --fs-type=fsfs $REPOS_ROOT/$PROJECT
> >
> > REPOS=file://$REPOS_ROOT/$PROJECT
> >
> > svn mkdir --message="Initial project layout" $REPOS/trunk $REPOS/tags
> > $REPOS/branches
> > svn commit --message="New Rails project"
> >
> > How would I do something equivalent on SVN which is not local?
>
> Instead of accessing the repository via the local file:/// protocol,
> you'll use a network protocol, like svn://, svn+ssh://, http:// or
> https://. You'll have to ask devjavu which of those they use, and
> what the URL to your repository will be.
>
> To initially create the repository, you do need to be on the local
> filesystem. In the case of devjavu, the "svnadmin create" step seems
> to be accomplished via their web interface instead.
>
>
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Mon Aug 27 02:12:16 2007