0

我有一个装有 Windows 7 的 VPS 服务器,在该服务器上我放置了我的 Asp.net c# web 应用程序。现在我将如何使用 SVN 进行设置,以便我可以从我的个人计算机签入和签出代码?

注意:这是 Tortoise SVN

谢谢

4

2 回答 2

1

The best thing to do is to read the Subversion book, as you'll need to have a better understanding of subversion to run a server. It's not terribly difficult, a lot depends on whether you need access to the repository from other computers. If not, you set up a local file based repository without using a server at all. Again, this is all well covered in book.

于 2013-02-25T03:24:37.963 回答
1

一种简单的方法是在您用作服务器的机器上安装VisualSVNServer,然后在您用于开发人员工作站的机器上安装 TortoiseSVN。安装 VisualSVNServer 后,创建一个存储库,它会显示存储库的 URL,然后您可以将其插入开发工作站上的 Tortoise。

然后使用 Tortoise 将 C# 代码添加到存储库中,一切就绪。

于 2013-02-25T13:56:40.820 回答