Subversion:下载两个版本之间修改的文件

发布于 2024-07-29 20:39:02 字数 143 浏览 3 评论 0原文

我们目前正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半枫 2024-08-05 20:39:02

仅使用命令行 svn 即可轻松获得相同的结果。 如果您的新 trac-replacement 不具有该功能,您可以编写一个脚本来为您获取这些值。 这是 bash 中的演示脚本:

#!/bin/bash
// replace 100 and 120 with revision numbers
svn diff -r 100:120 "svn://path.to.your.svn.repo" > svn.rev.diff
gzip svn.rev.diff

这将为您提供两个修订版之间的一个很好的 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:

#!/bin/bash
// replace 100 and 120 with revision numbers
svn diff -r 100:120 "svn://path.to.your.svn.repo" > svn.rev.diff
gzip svn.rev.diff

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.

灯角 2024-08-05 20:39:02

包含此内容的 get_file.sh 可以工作

echo "++++++++++++++++++++++++++++++++++++++++++"
echo "usage ./get_file.sh 13910 13914"
echo "++++++++++++++++++++++++++++++++++++++++++"

REPO=http://svn.urcompany.com/urproduct/trunk
for i in $(svn diff --summarize -r $1:$2 $REPO | awk '{ print $2 }'); do p=$(echo $i | sed -e "s{$REPO/{{"); mkdir -p $(dirname $p); echo $i; svn export --force $i $p; done

感谢 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

echo "++++++++++++++++++++++++++++++++++++++++++"
echo "usage ./get_file.sh 13910 13914"
echo "++++++++++++++++++++++++++++++++++++++++++"

REPO=http://svn.urcompany.com/urproduct/trunk
for i in $(svn diff --summarize -r $1:$2 $REPO | awk '{ print $2 }'); do p=$(echo $i | sed -e "s{$REPO/{{"); mkdir -p $(dirname $p); echo $i; svn export --force $i $p; done

Thanks to http://www.clearintent.co.uk/subversion/technical/support/output_a_list_of_changes_between_2_revisions/699

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文