Subversion 列表在 URL 之间发生变化
我正在寻找一种轻松列出 subversion 中两个 URL 之间的更改的方法,列出已更改的文件、时间、人员和原因。
使用Totoise 要么给你太多细节,显示实际的源代码更改,要么太少,即它列出了已更改的文件,但没有原因、时间和原因(“消息”)。
我试图总结两个标签/版本之间的变化
I am looking for a way of easily listing changes between two URLs in subversion, listing the files that have changed , when , who and why.
Using Totoise either gives you too much detail, showing the actual source code changes or too little i.e. it lists the files that have changed without the reason , when and why ("message").
I am trying to summarise the changes between two tags /releases
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您介意使用命令行客户端吗?您可能需要安装它。
这将向您展示两个 URL 之间的差异,而无需深入的程序详细信息。
如果您正在谈论在两个修订之间记录日志(查看谁更改了什么等),您可以使用 svn log -v --stop-on-copy 来查找修订和来源那个标签:
啊!现在我们看到两个标签都来自 trunk,REL-1.0 的修订版为 72399,REL-2.0 的修订版为 74383
我实际上编写了一个 PHP 脚本来执行此操作,因此我可以自动生成一个列出差异的网页。我会收集已更改的程序以及 Jira 缺陷。
不幸的是,我被那家公司解雇了,几周后该公司就倒闭了。 (对公司的道德:解雇我,后果自负。)我无法为您提供实际的 PHP 代码。然而,我写起来也不过两天,而且我连PHP都不懂。
Do you mind using the command line client? You might have to install it.
That'll show you the difference between the two URLs without the deep program details.
If you're talking about taking a log between the two revisions (seeing who changed what, etc), you can use
svn log -v --stop-on-copy
to find the revision and source of that tag:Ah! We now see that both tags come from trunk and REL-1.0 is revision 72399 and REL-2.0 is revision 74383
I actually wrote a PHP script to do this, so I could automatically produce a webpage listing the differences. I would gather the programs that were changed, and the Jira defects.
Unfortunately, I was laid off from that company, and then it went belly up a few weeks later. (Moral to companies: Lay me off at your own risk.) I can't get you the actual PHP code. However, it didn't take me more than a couple of days to write, and I don't even know PHP.