Re: Local Repo
From: <jblist_at_icloud.com>
Date: Thu, 25 Sep 2014 08:58:44 -0700
Hi David,
I just noticed that you have four slashes on the beginning of your URL. Only three are needed for file-local URLs. FYI, file-local URLs look like this:
file://localhost/path/to/file
Since "localhost" is assumed if missing, you can shorten it to this:
file:///path/to/file
If you put "//" a the beginning of the file-path, you are specifying an absolute path rather than a relative path. But, since file URLs generally start from the root directory anyway you end up with the same object.
file://localhost//path/to/file
degenerates to
file:///path/to/file
-Joseph
On Sep 25, 2014, at 8:47 AM, jblist_at_icloud.com wrote:
> First, I wouldn't run svn as root like you are with 'sudo'. Instead, change the ownership of your repo so that you have write access.
|
This is an archived mail posted to the Subversion Users mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.