RE: svn copy vs svn add in pre-commit

2012-06-13 Thread Ullrich.Jans
Hi, > -Original Message- > From: Nico Kadel-Garcia [mailto:nka...@gmail.com] > Why do you want to do this? To assure that tags have been part of a QA > release process? No - for that, we don't need to check if it's a copy. We mostly want to avoid the case with someone copying in the she

Re: svn copy vs svn add in pre-commit

2012-06-13 Thread Nico Kadel-Garcia
Sent from my iPhone On Jun 13, 2012, at 14:37, wrote: > Hi, > > is there any way to determine if a commit to a repository is an svn copy or a > shell level copy plus an svn add? I'm trying to limit people tagging to doing > an svn copy, but I can't figure out how to determine if the current

RE: svn copy vs svn add in pre-commit

2012-06-13 Thread Ullrich.Jans
Hi, > -Original Message- > From: Johan Corveleyn [mailto:jcor...@gmail.com] > try 'svnlook changed --copy-info -t $TXN $REPOS' > > The --copy-info should show things like "(from trunk/:rXXX)". That's exactly what I was looking for. :-) How could I have overlooked this!? Many thanks,

Re: svn copy vs svn add in pre-commit

2012-06-13 Thread Stefan Sperling
On Wed, Jun 13, 2012 at 12:37:27PM +, ullrich.j...@elektrobit.com wrote: > Hi, > > is there any way to determine if a commit to a repository is an svn copy or a > shell level copy plus an svn add? I'm trying to limit people tagging to doing > an svn copy, but I can't figure out how to determ

Re: svn copy vs svn add in pre-commit

2012-06-13 Thread Johan Corveleyn
On Wed, Jun 13, 2012 at 2:37 PM, wrote: > Hi, > > is there any way to determine if a commit to a repository is an svn copy or a > shell level copy plus an svn add? I'm trying to limit people tagging to doing > an svn copy, but I can't figure out how to determine if the current > transaction (r

svn copy vs svn add in pre-commit

2012-06-13 Thread Ullrich.Jans
Hi, is there any way to determine if a commit to a repository is an svn copy or a shell level copy plus an svn add? I'm trying to limit people tagging to doing an svn copy, but I can't figure out how to determine if the current transaction (running in the pre-commit hook) is a copy or an add...