Kapil Garg
Kapil Garg

Reputation: 21

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 server. How can I setup the code from production server into SVN repository?

Upvotes: 2

Views: 93

Answers (2)

Nishant
Nishant

Reputation: 55866

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.

Upvotes: 1

jlindenbaum
jlindenbaum

Reputation: 1881

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

Upvotes: 0

Related Questions