I just installed uberSVN on my Windows computer. I created a repository and am able to access it on my local machine. How would I go about accessing this repository from another computer?
UberSvn Remote access to Repository
1.3k Views Asked by MCR At
3
There are 3 best solutions below
0

The url given for remote access is displayed when you setup a repository in uberSVN (or you can find it from the repository tab afterward).
It's usually http://your.ip.address:9880/reponame
0

if your machines are in the same network, use your machine ip address as the svn server host(URL to repository in torttoise).
The machine you're on needs to be able to find the server and that might depend up DNS.
From a Windows command line on the server, type
ipconfig
. It should show you the IPv4 address of the server. On your local machine, use the URLhttp://xx.xx.xx.xx/svn/<repo>
wherexx.xx.xx.xx
is the IP address of the Subversion server and<repo>
is the name of your Subversion repository.You can talk to your network guys about configuring DNS, so your Subversion server has an actual name instead of just an IP address. You can also edit the file
C:\Windows\System32\drivers\etc\hosts
file on the local Windows machine to give your Subversion server a name. Let's say the IP address of the Subversion server is 10.1.0.34 and your repository isfoo
, you could type in:Or you can edit the
`C:\Windows\System32\drivers\etc\hosts
file on your local Windows PC like this:And then use: