vote up 6 vote down star
5

When I'm doing a tortoise svn merge, it includes a bunch of directories, and some files into the modified files, even know there are no actual changes.

It changes the property svn:mergeinfo

Is there any reason why these properties set on the directory/files are needed? Is there any way to get around not doing these changes to svn:mergeinfo?

I usually just revert the items then commit, but this wastes extra time

flag

5 Answers

vote up 8 vote down check

That is happening, very likely, because those files and directories have the svn:mergeinfo property set from a previous merge. I don't think it's generally a good idea to merge individual files or directories in a way that causes the mergeinfo to be written to individual files. You should get into the habit of merging at the highest level possible for your workflow, so that the mergeinfo property is only set on structural directories, such as /trunk or /branches/1.0.

However, if you do find yourself with mergeinfo properties on individual files and folders, there are two things you can do: the first thing is simply to remove the svn:mergeinfo property from the files and directories in question. I'm not sure this is recommended unless you really know what you're doing, and what the effects might be. Read the documentation before you do this!

The second thing you can do is commit the property changes the way SVN wants you to, which, if you trust the software, is probably the right thing do.

That having been said, I've been working with my teammates to get in the right habits so that we don't have this annoyance any more.

link|flag
Thanks, it seems almost random which files have this property set, and it must be from past developers merging from the non root directory. I will remove them. – Brian R. Bondy Mar 7 at 20:46
Thanks a bunch for clarifying how this happened :) – TheXenocide Nov 4 at 21:24
vote up 0 vote down

We removed it recursively on our project because just about all files had this info which made mergeing very annoying (if only one file had been altered, all files had to be merged). From now on we'll only merge on the root, which should avoid this situation in the future.

It hasn't given us any problems so far. Logging is still available on files and seems to be the same (but do it at your own risk anyway!).

Oh, we did it on our trunk, just before making a new branch. This way, we can start from a clean slate.

link|flag
vote up 1 vote down

If you do your merges with the --ignore-ancestry option, then the mergeinfo properties will not be created in the first place.

svn merge --ignore-ancestry -c 1234 svn://sourcecontrol .
link|flag
vote up 6 vote down

What happens is that once a file/folder has explicit mergeinfo, each subsequent merge to the branch will update that mergeinfo even if the file/folder is unrelated. This is annoying as it introduces more and more clutter in the changelist for each merge.

To avoid this, only merge to the "root" folder of the branch, for example "/branches/maintenance2.x". None of the files or folders below "/branches/maintenance2.x" should then get mergeinfo. Follow the merging advice in the svn book.

Unfortunately, even if you merge only at the "root" folder of the branch, empty svn:mergeinfo properties can still appear on individual files and folders when they are copied, to indicate that they have not received the same merges as their siblings.

It is probably safe to delete the superfluous subtree mergeinfo. One way to do this is by doing a recursive deletion of the svn:mergeinfo property on each file and folder in your project root.

Alternatively, you can upgrade to subversion 1.6. I believe have verified that it fixes this issue. It even seems to delete superfluous mergeinfo added by earlier versions for you.

edit: judging from the comments there are still cases in svn 1.6 where superfluous sub-tree mergeinfo appears. But I have not been able to reproduce that.

link|flag
1  
I can confirm that svn 1.6 does not fix this issue. – Mike Miller Jul 23 at 17:28
However I can confirm that simply deleting all the extra properties manually made much of the problem go away. – Mike Miller Jul 23 at 17:49
Simply using 1.6 does not fix this issue as it is actually expected functionality, albeit a slightly annoying one for people using a typical branch/trunk model. – TheXenocide Nov 4 at 21:26
vote up 1 vote down

svn:mergeinfo is the property Subversion uses to track merge history. I'd just let it do what it has to do... you might need merge history tracking later and discover that it doesn't work because you didn't commit those properties.

link|flag
I agree, that's just metadata, and it will become more useful as the SVN client software, such as TortoiseSVN, evolves. – EnocNRoll Apr 15 at 14:47

Your Answer

Get an OpenID
or

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