> -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
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
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+/?$" |