svn:任何有效列出已更改属性的方法

发布于 2024-12-10 09:02:59 字数 50 浏览 0 评论 0原文

svn diff 似乎没有办法只列出已更改的属性名称(而不是值)。有办法做到这一点吗?

svn diff doesn't seem to have a way to just list the property names (not values) that have changed. Is there a way to do this?

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

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

发布评论

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

评论(1

累赘 2024-12-17 09:02:59

svn diff 本身似乎没有允许这样做的选项。因此,您可以添加一个过滤器,仅列出具有特殊格式的更改(取决于您使用的操作系统是否简单)。在 Ruby 中,我会这样匹配:

/(Property .*\n_+\n(.*\n)+)\n\n)/

读起来像这样:

  • Property 开始到行尾。
  • 然后用______整行。
  • 然后就可以了,最多 2 个换行符。

一个例子可以是:

Property changes on: summary.xls\n
___________________________________________________________________\n
Modified: svn:mime-type\n
   - application/octet-stream\n
   + application/excel\n
Added: svn:needs-ok\n
   + *\n
\n

svn diff itself seems not to have an option to allow that. So you could add a filter, to only list changes with a special format (depending on the OS you are using easy or no). In Ruby, I would match like that:

/(Property .*\n_+\n(.*\n)+)\n\n)/

Reads like that:

  • Starts with Property to the end of line.
  • Then full line with ______.
  • Then anything, up to 2 line breaks.

An example could be:

Property changes on: summary.xls\n
___________________________________________________________________\n
Modified: svn:mime-type\n
   - application/octet-stream\n
   + application/excel\n
Added: svn:needs-ok\n
   + *\n
\n
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文