Re: Pre step before SVN Merge

2014-01-23 Thread Thorsten Schöning
Guten Tag Masood, am Donnerstag, 23. Januar 2014 um 12:18 schrieben Sie: > I want to perform Code Quality Analysis on release[...] Write a server side pre commit hook and do such analysis on the server, rejecting a commit on errors. The key point is that you want to analyze the result of the merg

Re: Pre step before SVN Merge

2014-01-23 Thread Masood
Hi Thorsten, Thanks for your reply. Actually I have a trunk and some release(as branch). When a person starts a merge operation(i.e to merge release code with trunk) then as pre-merge step I want to perform Code Quality Analysis on release(SonarQube Analysis. Its a Code Quality Tool) and if the

Re: Pre step before SVN Merge

2014-01-22 Thread Thorsten Schöning
Guten Tag Masood, am Donnerstag, 23. Januar 2014 um 06:35 schrieben Sie: > That hook > script will perform the code analysis and if there there is any critical > issue then it will abort the merge operation. Which code analysis do you speak of and what are the critical issues you may see? Are you

Re: Pre step before SVN Merge

2014-01-22 Thread Ben Reser
On 1/22/14, 9:49 PM, Masood wrote: > Can I write hook scripts at server end to perform the task ? > If so, can i get any web link for it ? A merge is just a read operation as far as the server is concerned and we don't have hooks for reads. There actually is one Subversion client that supports cl

Re: Pre step before SVN Merge

2014-01-22 Thread Masood
Dear Team, Thanks for the reply. Can I write hook scripts at server end to perform the task ? If so, can i get any web link for it ? Thanks Ahead, With Regards, Masood -- View this message in context: http://subversion.1072662.n5.nabble.com/Pre-step-before-SVN-Merge-tp186698p186707.html Se

Re: Pre step before SVN Merge

2014-01-22 Thread Kyle Sluder
On Wed, Jan 22, 2014, at 09:35 PM, Masood wrote: > Actually I want to execute a hook scripts before merge operation whenever > user > start merge task(either from SVN merger command or from GUI). That hook > script will perform the code analysis and if there there is any critical > issue then it wi

Re: Pre step before SVN Merge

2014-01-22 Thread Masood
Hi Thorsten, Thanks for the reply. Actually I want to execute a hook scripts before merge operation whenever user start merge task(either from SVN merger command or from GUI). That hook script will perform the code analysis and if there there is any critical issue then it will abort the merge ope

Re: Pre step before SVN Merge

2014-01-22 Thread Thorsten Schöning
Guten Tag Masood, am Mittwoch, 22. Januar 2014 um 12:50 schrieben Sie: > Does anyone have some information on it ? You should provide some more details about your use case, especially if you need something user orientated before one starts with a merge in whatever client one uses or something whi