Within a pre-commit script, is it possible (and if so, how) to identify commits stemming from an svn merge?

svnlook changed ... shows files that have changed, but does not differentiate between merges and manual edits.

Ideally, I would also like to also differentiate between a standard merge and a merge --reintegrate.

Background:

I'm exploring the possibility of using pre-commit hooks to enforce SVN usage policies for our project.

One of the policies state that some directories (such as /trunk) should not be modified directly, and changed only through the reintegration of feature branches. The pre-commit script would therefore reject all changes made to these directories apart from branch reintegrations.

Any ideas?


Update:

I've explored the svnlook command, and the closest I've got is to detect and parse changes to the svn:mergeinfo property of the directory. This approach has some drawback:

  1. svnlook can flag up a change in properties, but not which property was changed. (a diff with the proplist of the previous revision is required)
  2. By inspecting changes in svn:mergeinfo, it is possible to detect that svn merge was run. However, there is no way to determine if the commits are purely a result of the merge. Changes manually made after the merge will go undetected. (related post: Diff transaction tree against another path/revision)
link|improve this question

80% accept rate
Do you need to distinguish between reintegration and regular merges? – Álvaro G. Vicario Jan 9 at 15:24
@ÁlvaroG.Vicario Ideally, yes. But I'd settle for simply detecting merges of any kind. – Shawn Chin Jan 9 at 15:33
I don't think that parsing svn:mergeinfo is fragile: that property is the mechanism used by Subversion to track changes. However, I'm not sure that the --reintegration option has any direct effect in revision properties. Sorry I can't be of more help. – Álvaro G. Vicario Jan 9 at 15:47
@ÁlvaroG.Vicario good point. I'll look further into that. – Shawn Chin Jan 9 at 16:11
Unfortunately, looking at svn:mergeinfo alone is not enough. See updates above. – Shawn Chin Jan 11 at 12:05
show 1 more comment
feedback

1 Answer

unfortunately subversion does not enforce merge only commits

if i have access to a branch, i can do whatever after merge and before commit

also subversion merge happens on client side

lot of code repository tools will merge on server. i.e. enforce that you are only moving patches from one stream to another

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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