我正在尝试让一个gource窗口显示来自SVN存储库的“实时”事件..
我所拥有的是:
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 tracktest2.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
doneTHis的工作原理如下:每隔10秒,它就会从HEAD版本中获取日志,并将其发送到gource
但是一旦我删除了“gource HEAD”,或者将它变成了其他任何东西,比如0:HEAD或者150或者其他什么,它就乱套了,告诉我-r不能读取日志格式??
ps:运行svn命令实际上会生成一个有效的日志...
先进的thx
发布于 2013-05-12 02:55:46
查看https://github.com/whitewhidow/live-git-for-gource,获取gource中的live git和live svn可视化的完整解决方案(在提出这个问题很久之后才创建)
https://stackoverflow.com/questions/11903290
复制相似问题