[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: accessing my repository from another computer

From: Lorenz <lorenznl_at_yahoo.com>
Date: Wed, 10 Oct 2012 13:00:55 +0000

Carmit Shiran wrote:
>I installed TortoiseSVN on my computer and I want to access my files in the
>repository I created on my local computer, from another computer.
>Is that possible? Can I just access via a path (e.g/ file://) ? what
>exactly should I write in the path? How do I specify on what computer is my
>repository?
>Do I need a server?
>It's only me, no other users so I'm trying to avoid using a server (which
>I'm also not familiar with). I prefer using a path or something simple.

using the file:// protocol is not recommended for other purposes then
local testing.

setting up svnserve quiet easy:

either run it from the command line as required

        svnserve -d --root <path-to-repo>

and close the command prompt when finished

or create a windows service (all in one line)

        sc create svnserve
          binpath= "\"<path-to-TSVN-bin-folder>\svnserve.exe\"
            --service --root \"<path-to-repo>\""
              DisplayName="svnserve" depend= Tcpip

to run svnserve in the background automatically

see also http://svnbook.red-bean.com/nightly/en/svn.serverconfig.html

-- 
Lorenz
Received on 2012-10-10 14:59:18 CEST

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.