The mergeinfo tag has no wiki summary.
14
votes
1answer
949 views
Svn pre-commit hook to disallow svn:mergeinfo on non-root directories
I would like to use a pre-commit hook that prevents developers from setting svn:mergeinfo on non-root directories. That is, I want to enforce that svn:mergeinfo can only be set on directories like ...
6
votes
4answers
881 views
How to avoid svn:mergeinfos on sub-folders?
We try to keep the 'svn:mergeinfo' property on the root branch folder only. However, we keep seeing it creep into subfolders. We've been able to identify some possible causes:
Moving a folder in the ...
3
votes
3answers
437 views
How do I avoid large number of svn:mergeInfo when merging trunk to a feature-branch in SVN
I am trying to keep a feature branch up to date by merging trunk into the branch. Problem is, that about 2000 files that was there when the branch was created, and that has been left untouched on both ...
3
votes
1answer
168 views
The mergeinfo of a single file is always being touched
I have a couple of files that always seem to be getting new svn:mergeinfo set on various merge tasks performed through the regular work cycle of merges.
The file has not changed in months, but the ...
3
votes
1answer
1k views
How do you get subversion diff summary to ignore mergeinfo properties?
I have subversion 1.6.5 client and 1.5.4 server. And I mostly only care about diffs on fully repository paths, not working copies.
When diffing branches, ones that have been merged already show up as ...
2
votes
2answers
1k views
How to set a trigger to prevent commits to SVN with mergeinfo property?
I'd like to avoid creating svn mergeinfo property on anything but the root of branches.
We have a trunk branch and some other branches.
Assuming I know absolutely nothing about svn triggers, what ...
1
vote
1answer
126 views
Long svn:mergeinfo on SVN directory properties
It looks like every branch reintegration to trunk has caused an extra entry to be added in the trunk's svn:mergeinfo property. Is this SVN behavior or TortoiseSVN - and is there anything bad about it? ...
0
votes
0answers
34 views
How can I ignore irrelevant mergeinfo changes when scanning a log?
Recently my scan for relevant changes has been including mergeinfo changes that are not relevant and I would like to ignore these revisions where the changes in the log item do not alter any items in ...
0
votes
1answer
93 views
When can I remove entries in svn:mergeinfo?
I've used TortoiseSVN for several years.
Several branches were created, merged back to trunk, and then deleted.
Example of deleted branches:
https://SvnServer/svn/MyProject/branches/branch1
...
0
votes
1answer
196 views
Svn: revert file content changes without reverting any related mergeinfo?
If you've done a merge you may find, before committing the changes, that actually you don't want to accept any of the changes merged into one of the affected files. So you do e.g.:
$ svn revert foo.c
...