SharpSVN 中工作目录的当前修订版
如何获取当前版本 工作目录?
如何获取特定版本 来自存储库服务器的文件?
How to get the current revision of
the working directory?How to get a specific revision of a
file from the repository's server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 SvnClient.GetInfo() 方法,并将 SvnTarget 设置为您的工作目录或远程存储库。然后,您可以使用 SvnInfoEventArgs 的 Revision 属性来获取您想要的内容。
Use the SvnClient.GetInfo() method, with the SvnTarget set as either your working directory or the remote repository. You can then use the Revision property of the SvnInfoEventArgs to get what you want.
代码
ver.Start 和 ver.End 就是您想要的。
但是,我不知道为什么存在两个值(开始和结束)。
Code
ver.Start and ver.End are what you want.
But, I don't know why two values(Start and End) exist.