How Can I merge code from production to SVN?
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.
精彩评论