Configuring subversion for visual studio
I have Visual studio 2008 running on windows-7(x86). I have installed subversion (server+client), tortoise svn and ankhsvn on my system. I could add my solution to subversion's repository using the url: File://c:/svn_repository/ But when I try "svn://localhost" I do not see any repository on my system.
My friend who is on the same LAN 开发者_开发知识库cannot see my repository.
What repository URL should I use for others in LAN to be able to see my repository?
- Create a repository with
svnadmin create <repos name>
- Make sure your sever is running (
svnserve.exe
) with sysinternals process explorer for example - Check you can connect with tortoisesvn use
svn://yourip
as URL add
ANDcommit
your project either- Your friend should also use the same URL
- Try out by using your hostname. NOTE: localhost IS NOT your hostname!!!
精彩评论