如何使用 SharpSvn 检测 svn 文件/文件夹重命名或移动?

发布于 2024-08-14 06:09:33 字数 69 浏览 9 评论 0原文

在修订版本之间进行比较时,如何检测 subversion 文件/文件夹重命名或移动?如何将它们与“正常”添加和删除区分开来?

How can I to detect subversion file/folder renames or moves when doing comparisons between revisions? How can I distinguish them from a "normal" add and delete?

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

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

发布评论

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

评论(1

清醇 2024-08-21 06:09:33

SvnLogEventArgs 有一个属性 ChangedPaths。此属性包含该修订版中的路径更改。它有一个 Action、Cop​​yFromPath、CopyFromRevision 和 Path。

如果在添加的文件上设置了 CopyFromPath 和 CopyFromRevision,则它是具有历史记录的副本(然后没有相关的删除操作,在分支时常见),或重命名/移动(当有相关的删除操作时)。

SvnLogEventArgs has a property ChangedPaths. This property contains the paths changes in that revision. It has an Action, CopyFromPath, CopyFromRevision and Path.

If CopyFromPath and CopyFromRevision are set on the file that was added, it was a copy with history (then there's no related delete action, common when branching), or rename/move (when there is a related delete action).

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