You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by dennisj2 <dj...@gmail.com> on 2016/02/14 01:21:57 UTC

Commit Error using ms onedrive repo

I have a basic cloud setup, primary windows 10 client with onedrive
installed, and a remote server pointing to the onedrive url - I have full
access to the repository and can update, export, et.al., but cannot commit
changes made on the remote server. I get the following errors:

<http://subversion.1072662.n5.nabble.com/file/n196123/svn-error.png> 

Thought this was going to be easy, thought wrong. Help?



--
View this message in context: http://subversion.1072662.n5.nabble.com/Commit-Error-using-ms-onedrive-repo-tp196123.html
Sent from the Subversion Users mailing list archive at Nabble.com.

Re: Commit Error using ms onedrive repo

Posted by Joseph Bruni <jb...@icloud.com>.
> On Feb 14, 2016, at 10:26 AM, dennisj2 <dj...@gmail.com> wrote:
> 
> Thanks Bert, -
> 
> Ok, so, then I really need a cloud based repository. Do you have any
> recommendations on setting up shoestring cloud based svn repository?


Beanstalkapp.com provides low cost SVN hosting.



RE: Commit Error using ms onedrive repo

Posted by dennisj2 <dj...@gmail.com>.
Thanks Bert, -

Ok, so, then I really need a cloud based repository. Do you have any
recommendations on setting up shoestring cloud based svn repository?



--
View this message in context: http://subversion.1072662.n5.nabble.com/Commit-Error-using-ms-onedrive-repo-tp196123p196129.html
Sent from the Subversion Users mailing list archive at Nabble.com.

RE: Commit Error using ms onedrive repo

Posted by Bert Huijben <be...@qqmail.nl>.

> -----Original Message-----
> From: dennisj2 [mailto:djorgens2@gmail.com]
> Sent: zondag 14 februari 2016 01:22
> To: users@subversion.apache.org
> Subject: Commit Error using ms onedrive repo
> 
> I have a basic cloud setup, primary windows 10 client with onedrive
> installed, and a remote server pointing to the onedrive url - I have full
> access to the repository and can update, export, et.al., but cannot commit
> changes made on the remote server. I get the following errors:
> 
> <http://subversion.1072662.n5.nabble.com/file/n196123/svn-error.png>
> 
> Thought this was going to be easy, thought wrong. Help?

file:/// access to a repository really needs a real filesystem behind the
local path you use. Onedrive (when mapped as a drive letter) doesn't provide
the proper filesystem semantics needed to directy store a Subversion
filesystem.

I wouldn't recommend storing a Subversion repository in a local directory
shadowed to onedrive/dropbox/other-store via its app either, as that doesn't
provide the necessary guarantees either.

Subversion really needs full read, write, lock, move, etc. access to the
repository to guarantee stable behavior.

If you want to run Subversion against some cloud you should install some
server (Apache Httpd, svnserve) in the cloud and use a proper network layer
to access it. File based repository access isn't designed for that scenario,
and will most likely cause problems if you somehow get it running... 


The documentation even documents that you shouldn't run repositories on
network drives that don't provide the necessary ACID behavior.

	Bert