SharpSvn:如何查看 Update() 的结果?
使用简单的命令行 svn 客户端时,如果运行 update
,您可以看到对工作副本所做的更改。
我一直在尝试在 SharpSvn(使用 C#、.Net 3.5)中执行此操作,因为我需要查看 Client.Update()
操作是否导致文件删除,例如。
我尝试使用 SvnUpdateResult
,但它返回整个文件夹的一项,但我找不到任何详细信息。我在 SvnUpdateArgs
中也找不到任何看起来有用的东西。
请帮忙?
谢谢。
When using a simple command line svn client, if you run update
you can see the changes that were made to your working copy.
I've been trying to do so in SharpSvn (with C#, .Net 3.5), because I need to see if the Client.Update()
operation caused deletion of files, for example.
I tried using SvnUpdateResult
, but it returns one item, for the entire folder, with no details I can find. I also can't find anything that looks useful in SvnUpdateArgs
.
Help please?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在
SvnUpdateArgs
或客户端实例本身上订阅Notify
事件:You can subscribe to the
Notify
event, onSvnUpdateArgs
or on the client instance itself: