RE: Modifying svn:log property: good or bad?

2016-02-29 Thread Bert Huijben
> -Original Message- > From: Alfred von Campe [mailto:alf...@von-campe.com] > Sent: maandag 29 februari 2016 16:56 > To: webster.br...@rogers.com > Cc: Eric Johnson ; Subversion Users > > Subject: Re: Modifying svn:log property: good or bad? > > Thanks to all who have shared their respe

Re: Modifying svn:log property: good or bad?

2016-02-29 Thread Alfred von Campe
Thanks to all who have shared their respective policies. I’d be very interested to hear from the Subversion contributors themselves as to what the policy is for the Subversion repo. Alfred

Re: Modifying svn:log property: good or bad?

2016-02-29 Thread webster.brent
Here's a basic sh script syntax. # Check forbidden mergeinfo paths TXN_PATHS=$($SVNLOOK changed -t "$TXN" "$REPOS") # Grep for paths *not* in merge-allowed levels: /trunk, /branches/release/*,... TXN_PATHS=$(echo "$TXN_PATHS" | grep -Ev "^trunk/?$" | grep -Ev "^branches/release/\w+/?$" |