Branko Čibej ha scritto:
You are running the svn command-line client from your post-commit hook.
If 'svn propget' requires authorization, your hook script will hang
waiting for input.
That's it.
Since the hook script will always have access to the repository, it
would be better to use "svnl
In this discussion a user suggested how to change the commit author
using a post-commit hook: http://goo.gl/7dJ4l
I'd like to do exacly that, so I wrote a pre-revprop-change hook that
checks that allows the change under certain circumstances.
I tested and it's working.
My problem is that I can't
On 24.01.2013 14:38, Manuel Ferrero wrote:
> Thorsten Schöning wrote:
>
>>> The commit is done, but the author isn't changed.
>>> It seems top me that the batch file hangs when try to lookup the
>>> current
>>> user:
>>> for /f "delims=" %%a in ('svn propget svn:author --revprop -r %REV%
>>> http:/
Thorsten Schöning wrote:
The commit is done, but the author isn't changed.
It seems top me that the batch file hangs when try to lookup the current
user:
for /f "delims=" %%a in ('svn propget svn:author --revprop -r %REV%
http://my_server_address') do @set myAuthor=%%a
May it be that the clien
Guten Tag Manuel Ferrero,
am Donnerstag, 24. Januar 2013 um 14:03 schrieben Sie:
> The commit is done, but the author isn't changed.
> It seems top me that the batch file hangs when try to lookup the current
> user:
> for /f "delims=" %%a in ('svn propget svn:author --revprop -r %REV%
> http://my
In this discussion a user suggested how to change the commit author
using a post-commit hook: http://goo.gl/7dJ4l
I'd like to do exacly that, so I wrote a pre-revprop-change hook that
checks that allows the change under certain circumstances.
I tested and it's working.
My problem is that I can't m