如何使用 SharpSvn 检测 svn 文件/文件夹重命名或移动?
在修订版本之间进行比较时,如何检测 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SvnLogEventArgs 有一个属性 ChangedPaths。此属性包含该修订版中的路径更改。它有一个 Action、CopyFromPath、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).