将 SVN diff 格式化为并排比较

发布于 2024-11-26 14:35:00 字数 61 浏览 1 评论 0原文

我想生成一个并排的 SVN diff,而不是通常的 SVN diff 输出。 有什么方法可以得到这种输出吗?

I wanted to produce a side by side SVN diff instead of the usual SVN diff output.
Is there any way to get this sort of output ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

仅一夜美梦 2024-12-03 14:35:00

您可以指定自定义 diff 命令:(

svn --diff-cmd "diff" --extensions "-y" diff

或者甚至可以使用 sdiff 等工具)

You can specify a custom diff command:

svn --diff-cmd "diff" --extensions "-y" diff

(Or then perhaps even use tools like sdiff)

扎心 2024-12-03 14:35:00

cdiff 可以显示并排增量彩色差异,请参阅其主页了解详细信息和演示: https://github.com/ymattw/cdiff

cdiff can display side by side, incremental, and colorful diff, see its home page for detail and demo at https://github.com/ymattw/cdiff

诺曦 2024-12-03 14:35:00

svn diff --diff-cmd 'diff' -x '--side-by-side -W230' 文件名

将“-W230”调整为充分利用屏幕宽度的值

svn diff --diff-cmd 'diff' -x '--side-by-side -W230' FILENAME

Tune the "-W230" to whatever takes full use of your screen width

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