Author Topic: SVN update problem  (Read 4006 times)

Offline iw2nhl

  • Multiple posting newcomer
  • *
  • Posts: 116
  • BASIC, C, C++, Qt, bash
SVN update problem
« on: July 27, 2006, 01:51:41 am »
In the wiki that describes how to compile from svn, you read that the code should be updated using
Code
svn update
I tried it, but I have a problem:
i modified a source file in my hd version
finddlg.cpp
After an update I find:
finddlg.cpp
finddlg.cpp.mine
finddlg.cpp.r2779
finddlg.cpp.r2790

When I compile the updated source from svn I get errors because the new finddlg.cpp file contains:
Code
<<<<<<< .mine
// my modified code here
=======
// new code here
>>>>>>> .r2790

How to avoid this?
Why the resulting code is messed up that way? svn already provided the old and new versions and backed-up my version too. Why merge all together in the code that should be compiled?

Offline thomas

  • Administrator
  • Lives here!
  • *****
  • Posts: 3979
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

Offline iw2nhl

  • Multiple posting newcomer
  • *
  • Posts: 116
  • BASIC, C, C++, Qt, bash
Re: SVN update problem
« Reply #2 on: July 27, 2006, 03:04:03 am »
Thanks!