SVN: one working copy, two repositories?

前端 未结 8 1411
一向
一向 2020-12-14 08:35

I\'d like to know how can I set two repositories for my one working copy. I need one repository in my server, so that I can check in/out between two pcs; I need another repo

8条回答
  •  情话喂你
    2020-12-14 09:21

    If you don't have to use SVN, you may be better to use a distributed version control system, such as Mercurial or Git. Each PC will have its own copy of the repository, and changes can be synchronized either directly between PCs or via another copy on a central server. Since each PC has the full repository stored locally you can do diff or any other operation without network access.

提交回复
热议问题