Reputation: 21
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
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
Reputation: 1881
Create a new repository, copy the production code into the new repository, add/ignore files as you please, commit.
Upvotes: 0