为 Visual Studio 配置 Subversion
我在 windows-7(x86) 上运行 Visual studio 2008。我已经在我的系统上安装了 subversion (服务器+客户端)、tortoise svn 和 ankhsvn。 我可以使用以下网址将我的解决方案添加到 subversion 的存储库:File://c:/svn_repository/ 但是当我尝试“svn://localhost”时,我在系统上看不到任何存储库。
我在同一 LAN 上的朋友看不到我的存储库。
我应该使用什么存储库 URL,以便 LAN 中的其他人能够查看我的存储库?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
svnadmin create
创建存储库svnserve.exe
)add
并commit
您的项目svnadmin create <repos name>
svnserve.exe
) with sysinternals process explorer for examplesvn://yourip
as URLadd
ANDcommit
your project either