SharpSVN 中工作目录的当前修订版

发布于 2024-11-17 21:40:43 字数 80 浏览 3 评论 0原文

  1. 如何获取当前版本 工作目录?

  2. 如何获取特定版本 来自存储库服务器的文件?

  1. How to get the current revision of
    the working directory?

  2. How to get a specific revision of a
    file from the repository's server?

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

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

发布评论

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

评论(2

鲜血染红嫁衣 2024-11-24 21:40:43

使用 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.

傲性难收 2024-11-24 21:40:43

代码

var cc = new SvnWorkingCopyClient();
cc.GetVersion("Checkout Source FullPath", out var ver);

ver.Start 和 ver.End 就是您想要的。
但是,我不知道为什么存在两个值(开始和结束)。

Code

var cc = new SvnWorkingCopyClient();
cc.GetVersion("Checkout Source FullPath", out var ver);

ver.Start and ver.End are what you want.
But, I don't know why two values(Start and End) exist.

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