svn:任何有效列出已更改属性的方法
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
svn diff
本身似乎没有允许这样做的选项。因此,您可以添加一个过滤器,仅列出具有特殊格式的更改(取决于您使用的操作系统是否简单)。在 Ruby 中,我会这样匹配:读起来像这样:
Property
开始到行尾。______
整行。一个例子可以是:
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:Reads like that:
Property
to the end of line.______
.An example could be: