Subversion:下载两个版本之间修改的文件
我们目前正在使用 trac,并且已经开始依赖它的一项功能。 在源浏览器中,您可以按“查看更改”并查看 2 个修订版之间的所有差异。 我们喜欢能够下载一个 zip 文件,其中包含目录结构中所有已修改的文件。
有其他开源应用程序可以做到这一点吗?
We are currently using trac and have become dependent on one of its features.
Within the source browser, you can press View Changes and see all the diffs between 2 revisions. And we love being able to download a zip file that contains all the files modified, in their directory structure.
Is there another open-source application that can do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
仅使用命令行
svn
即可轻松获得相同的结果。 如果您的新 trac-replacement 不具有该功能,您可以编写一个脚本来为您获取这些值。 这是 bash 中的演示脚本:这将为您提供两个修订版之间的一个很好的 gzip 压缩差异文件 (
svn.rev.diff.gz
)。 当然,您可以向其中添加一些参数,而不是对数字进行硬编码,但这只是为了展示如何做到这一点。It's very easy to get the same result using just commandline
svn
. You could write a script that will get those values for you if your new trac-replacement won't have that feature. Here's the demo script in bash:This will give you a nice gzipped diff file (
svn.rev.diff.gz
) between two revisions. Of course you could add some params to it instead of hardcoding the numbers but that's just to show how this can be done.包含此内容的 get_file.sh 可以工作
感谢 http://www.clearintent .co.uk/subversion/technical/support/output_a_list_of_changes_ Between_2_revisions/699
get_file.sh with this content would work
Thanks to http://www.clearintent.co.uk/subversion/technical/support/output_a_list_of_changes_between_2_revisions/699