Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm new to SVN. After working on a branch for a day or so, I attempted to merge changes from the trunk to the branch:

svn merge svn://server/trunk

The problem is that whenever SVN encounters a conflicting file, it's not able to recognize line by line changes and marks the entire line as conflicted. I experimented with several other SVN clients and also tried to toggle the end-line and white-space options without any progress. What am I doing wrong? I think this is the simplest possible merge case, so I would expect this to work with the most default Subversion settings, any client and in any SVN version. Is it some known beginner's catch?

Client: 1.5.5 (SlikSvn:tag/1.5.5@34877) WIN32

Server: 1.4.6 (r28521), Windows

Edit

Based on the suggestions in comments and answers below, I did more investigation:

  1. The problematic files are UTF8.

  2. They don't have any SVN properties.

  3. The "svn diff" command correctly identifies the differences.

share|improve this question
Windows? Linux? Tortoise? – Assaf Lavie Feb 26 '09 at 20:05
Thank you for pointing me to that. I've edited the post. – Jan Zich Feb 26 '09 at 20:11
What type of file is it? Does it have any svn:props set? What does an svn diff show if you compare your branch version to the trunk version? – Ryan Graham Feb 26 '09 at 20:29
I did a diff on one file (a csproj file) and I got the expected result. But when I ran the svn merge on the entire tree, the "df" command showed the entire file as conflicted. – Jan Zich Feb 26 '09 at 21:22
All your files are conflicting or only a few of them? Were conflicting files changed on both branches after creating the branch or only on one? How far apart from each other (in terms of lines) were changes made on different branches? – Tomek Szpakowicz Feb 26 '09 at 22:53

6 Answers

up vote 5 down vote accepted

We had this issue recently and found that it was a problem with using a 1.4.x server and a 1.5.x client. Subversion 1.5 introduced more intelligent merging but you need the server and client to be running 1.5 to take advantage of this.

We found that specifying the range of revision numbers that we wanted to merge gave the expected results.

share|improve this answer

I've selected Mark's answer. This is just to summarize and provide more details. My problem is caused by the fact that we are using SVN 1.4 which does not support the more advanced 1.5 merging features. As indicated by the selected answer, I found that I have to use the following format of the SVN merge command (in case I want to propagate changes from trunk to my branch):

svn merge svn://dpr/branches/abc@REV svn://dpr/trunk@REV

I guess that my confusion was caused by the fact that the SVN book and the clients I was using were silently assuming that I was already running 1.5 and the examples and the default merging methods were using the new features. To be fair, the introduction to the Basic Merging section in the SVN books mentions it (which I noticed only when I resolved the issue).

share|improve this answer
The SVN book caused some confusion in our case as well!! – Mark Feb 26 '09 at 23:14

Have you tried using TortoiseSVN? It come bundled with ToroiseMerge which I find to be a decent merging too.

share|improve this answer
I’ve tried it, but with the same result. I was also puzzled by the interface and so I opted for the lowest common denominator: a command line client. I’ll try it one more time and provide an update. – Jan Zich Feb 26 '09 at 20:14

I haven't used SVN a ton, and I've only used it through the eclipse plug in, but there might be some scenarios where you simply have to tell it which case to use (your local vs the remote file). merging a set of disjoint outgoing and incoming changes isn't usually a problem, but if a line conflicts with certain types of changes (in eclipse it marks the whole line/block as red) you may just need to accept one or the other since it will probably not merge further on its own.

share|improve this answer

Check the svn:mime-type property on your files. If there is such a property set and its value does not start with 'text/', then Subversion treats those files as binary and not text.

If your files are encoded in utf-16, Subversion will also treat those files as binary by default.

share|improve this answer
The problematic files don't have any SVN properties, but they seem to be in UTF8. Does it count? – Jan Zich Feb 26 '09 at 21:50
utf8 is no problem. – Stefan Feb 27 '09 at 6:46

Merging in SVN is... well, it's merging in SVN. :-)

You'll have to resolve the conflict in order to merge. Other VCS tools like Bazaar (Wikipedia) or git (Wikipedia) can handle merging better most of the time due to the way that they work, having more than just the working copy stored locally. I'd recommend looking into both in the long run; if you know Subversion, Bazaar (often called bzr after it's command line program's name) may be a good option for you. I have used both, and like git, but love bzr. I even use bzr to interface with Subversion repositories that I have to work with (via the bzr-svn plugin). Bazaar is also more cross-platform than git; bzr works very well on Windows, if you have to use such an operating system. ;-)

ETA: As an aside, I used to use Subversion. The very reason I stopped was that I very much did not like its merging as that is an activity that I do regularly.

ETA2: To clarify, the only answer is to resolve the conflict. That is what you do in svn when you have a conflict. My suggestion to look into other VCSes was so that the OP can take a look and perhaps find something that will help them in the future; preferably interoperable with their current situation. I know that Bazaar does this, and I am pretty sure that git does this, though the OP since revealed that Windows is the system in use, so Bazaar would be the likely option to look into for the future. 'twasn't a "You should move to X, and now" type thing. Apologies if I was misunuderstood there. Also, Bazaar is command-line compatable (bzr co and bzr ci and bzr log, etc, making the interface very comfortable for people who know Subversion).

share|improve this answer
Advising someone to change their entire version control system because you don't know the answer to the question isn't helpful. That's a pretty major change to make, don't you think? – Ken White Feb 26 '09 at 20:37
Wasn't advising to change. Mayhap I was unclear. The answer is to resolve the conflict; I was merely advising that the OP look at other options to save merging headaches in the future—that's what I did, and it was well, well worth it. – Michael Trausch Feb 26 '09 at 20:40
Having had bad merge experiences with svn myself, I don't see why this is being downvoted. The OP may not be making a beginner mistake, svn may just not be able to deal with a merge situation even if it appears like it should be able to, in which case manually fixing it is the right answer... – Joshua McKinnon Feb 26 '09 at 20:56
It was downvoted because changing to a different VCS isn't the answer to the OP's question. The question was why SVN wasn't merging as easily as the OP thought it should; Michael's answer was "change to Bazaar or git", neither of which addressed the question or attempted to solve the problem. – Ken White Feb 26 '09 at 21:00
Slight clarification: Although Michael wrote "resolve the conflict", he offered no suggestion how to do so other than the long advertisement for two alternative VCSs. About as helpful as, "Gee, my PC won't boot." "You need to fix it then. Macs are really great! Jobs walks on water! OS X rules!" – Ken White Feb 26 '09 at 21:02
show 5 more comments

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.