开发者

How Can I merge code from production to SVN?

开发者 https://www.devze.com 2023-02-18 20:33 出处:网络
We have two projects. We have one setup in SVN and the other we have directly deployed on production 开发者_如何学JAVAserver. How can I setup the code from production server into SVN repository?It\'s

We have two projects. We have one setup in SVN and the other we have directly deployed on production 开发者_如何学JAVAserver. How can I setup the code from production server into SVN repository?


It's simple. Just import the unversioned code from your prod server to your code repository (SVN). See details here.

svn import [PATH] URL

import is nothing but a combo command for add and commit.


Create a new repository, copy the production code into the new repository, add/ignore files as you please, commit.

0

精彩评论

暂无评论...
验证码 换一张
取 消