如何从 python 远程轮询颠覆历史记录/日志?
我需要找到分支的第一个提交者,而不必检查所有整个分支。 从命令行这很容易做到:
svn log -v --stop-on-copy http://subversion.repository.com/svn/repositoryname
我需要从 python 脚本执行此操作,知道我该怎么做吗?我检查了 python subversion 绑定,但我不明白如何做到这一点,即使它看起来可以做到。
任何帮助将不胜感激。
I need to find the first committer of a branch without having to do a checkout of all the entire branches.
From command line that is very easy to do:
svn log -v --stop-on-copy http://subversion.repository.com/svn/repositoryname
I need to do this from a python script, any idea how can I do that? I checked the python subversion bindings but I cannot understand how to do it even if it seemed it can be done.
Any help will be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以只使用Python的
subprocess
模块:这样您就可以运行任何您想要的 SVN 命令:只需检查
stdout
(也许还有stderr
)即可获取命令的结果。然后,您可以使用例如正则表达式来解析检索到的数据:You could just use Python's
subprocess
module:This way you can run any SVN command you want: just examine
stdout
(and perhapsstderr
) to get the command's result. You could then use for example a regex to parse the retrieved data:另一种选择是仅使用操作系统包从 Python 中进行命令行调用。
请注意,这只会进行调用,如果您想实际捕获使用同一操作系统包中的 Popen 所需的信息。
Another option would be to just use a command line call from within Python using the OS package.
Note that this will just make the call, if you want to actually capture the information you need to use Popen from the same OS package.