Gource display LIVE svn

I am trying to show the LIVE source window from SVN events.

What I have:

test.sh:

#!/bin/bash bash test2.sh | gource --realtime --path - --log-format svn --colour-images \ --highlight-users --file-extensions --follow-user sam --user-scale 2 \ --file-idle-time 0 \ --logo /var/www/proppolis/src/Nono/AdminBundle/Resources/public/images/logo-proppolis-01.png \ --hide filenames,dirnames --camera-mode track 

test2.sh

 #!/bin/bash for (( ; ; )) do svn log http://101.101.101.101:9880/proppolis -r HEAD --username XXX --password XXX --verbose --xml --quiet sleep 10 done 

It works like this: every 10 seconds it receives a log from the revision of HEAD and STDOUT it for the source

But as soon as I delete "-r HEAD" or do it into something else, like 0: HEAD or 150 or something else, it goes into haywire and tells me that the gant source is not reading the log format?

ps: running the svn command. In fact, a reliable log is created ...

thanks at advaace

+4
source share
1 answer

Check out https://github.com/whitewhidow/live-git-for-gource for a complete solution for live git and live svn renderings in the source (created after this question was asked)

+4
source

All Articles