Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am upgrading from Rails 2 to Rails 3. What I did was did a clone of the original app and began the upgrade process.

Unfortunately, I needed to continue to use and make refinements to Rails 2, so there have been changes in the code.

I am not done with the Rails 3 upgrade from the original code: do I need to freeze my current Rails 2 and then start-over, or is there a way I can get my original up to Rails 3 and then take only the changes made in the original and push them into the new upgrade?

share|improve this question
What do you mean by saying "clone"? Did you make a branch? – socjopata Aug 17 '11 at 18:58

1 Answer

up vote 2 down vote accepted

I would choose git for this kind of work, it is a beautiful tool for that.

First you can init your source tree as a git repository, if you did not have it in git repo. If you already have it in git you can skip these steps and jump to branch creating.

git init .

Add the source files with git add and commit it w/ git commit.

Now you have a working Rails 2 app in git, create your upgrade branch for your Rails 3 modifications:

git checkout -b rails-3

Here you can modify your code to work with Rails 3. If you ever need to modify the Rails 2 part, simply checkout to the master branch:

git checkout master

Do the work, commit the modifications and then go back to Rails 3 branch and rebase:

git checkout rails-3 && git rebase master

After you're done and have a working Rails 3 app, go back and merge the changes:

git checkout master && git merge rails-3
share|improve this answer
1  
git really does make this a fairly straightforward thing, especially when managing parallel trunks. – tadman Aug 17 '11 at 19:14
yes, thanks, I am on git, but I wasn't sure about the rest of it, thanks – Angela Sep 6 '11 at 1:54
Hi, sorry if this is a dumb question but....do I stay in the same project directory as my Rails 2 app, but by doing git checkout -b rails-3, continue to work there and it will be part of the branch? – Angela Sep 21 '11 at 22:46
Is it possible to merge two separate checkouts that have been in separate directories, one rails 2 and one rails-3? – Angela Sep 21 '11 at 22:47
I would cherry-pick them into the actual branch. git cherry-pick commitid – KARASZI István Sep 22 '11 at 5:36
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.