vote up 0 vote down star
1

Hi,

I had a problem in one of my projects, I decided to checkout an older revision and do a few modifications to it. I am now trying to commit this older modified revision and any contained changes to HEAD.

When I do the svn ci -m "reverting with some changes" it gives me:

svn: File '/trunk/main.c' is out of date

I tried doing an update answering mine-conflict when prompted but it broke some other changed files.

Is there a way to commit my modified version to HEAD?

Thanks

flag

3  
Checkout HEAD. copy changed files into checkedout HEAD. commit HEAD. – Neil Butterworth Aug 24 at 14:26
Quick and dirty, it worked well! – James Aug 24 at 15:40

2 Answers

vote up 2 vote down check

You can't check out an older revision, then commit it to the HEAD. That wouldn't really make sense. The order of steps should be: 1) check out old revision, 2) make changes, 3) update to current revision (merge), and 4) resolve conflicts. It sounds like you're at step 4.

link|flag
vote up 0 vote down
  1. Use svn st to get a list of files that you modified
  2. Save those files somewhere or, even better, checkout head in a different place
  3. Merge the changes
  4. Commit.
link|flag

Your Answer

Get an OpenID
or

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