Reputation: 8710
I am using windows 7 and install tortoisesvn
.
I create repository in F:\working_direcoty\test-rep
, We have wirless network ,
I set my IP to 192.168.1.200 ,
how can I access my repository in another computer in local wireless network?
in that system also installed windowns 7
and tortoisesvn
Upvotes: 0
Views: 440
Reputation: 5163
Just use windows file sharing function to allow access to the repository (Right click on repository folder -> properties -> sharing). Url tor repository starts with file:///your_path
For very small projects we do it in a similar way via network drives. But using a svn-server like alroc mentioned is better way.
Upvotes: 0
Reputation: 28194
You need to set up a Subversion server, preferably on a server that's online all the time. Do not access a repository over a network connection in the same way that you would if it was on your local hard drive (file:///
URL).
Once you have a server configured, neither the server nor the client know or care whether you're on a wired or wireless connection.
There are several links listed under "related" on the right side here which discuss this.
Upvotes: 1