Where should a Subversion repository be?

后端 未结 8 2656
失恋的感觉
失恋的感觉 2021-02-20 09:15

Should it be on the development servers or a Subversion server?

I suppose this could be expanded to any client-server version control system.

8条回答
  •  醉酒成梦
    2021-02-20 09:29

    In addition to what other people mentioned about dev servers being trashed regularly, there is a performance argument too. If someone is doing some development or testing on the development server, you don't want that to slow down the SVN server for checkouts or synchronizations. Also if you decide to run something like continuous integration on the same server, you don't want all your unit tests to bog down regular dev/test operations on that server.

提交回复
热议问题