使用SVNKit,如何将目录切换到不同的分支?

发布于 2024-10-31 18:56:28 字数 190 浏览 0 评论 0原文

我在 trunk 中有一个工作目录,想将其切换到指定的分支。我怎样才能做到这一点?

我想要一个方法,

public static void switchToBranch(File baseDir, String branchUrl){
}

我该如何实现呢?

I have a working directory in trunk and would like to switch it to a specified branch. How can I do that?

I'd like to have a method

public static void switchToBranch(File baseDir, String branchUrl){
}

How could I implement that?

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

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

发布评论

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

评论(1

焚却相思 2024-11-07 18:56:28

[更新] 更好的版本:

public static void switchToBranch(final String branchUrl,
    final File basedir,
    final ISVNDebugLog log) throws SVNException, IOException{
    final SVNUpdateClient updateClient =
        SVNClientManager
            .newInstance().getUpdateClient();
    if(log != null) updateClient.setDebugLog(log);
    updateClient.doSwitch(basedir,
        SVNURL.parseURIEncoded(branchUrl),
        SVNRevision.HEAD,
        SVNRevision.HEAD,
        SVNDepth.INFINITY,
        false,
        false);
}

凭证显然是自动从 ~/.subversion 目录中获取的。

(当然它不一定是分支,SVN 不会区分标签、分支或任何其他路径)

[Update] Better version:

public static void switchToBranch(final String branchUrl,
    final File basedir,
    final ISVNDebugLog log) throws SVNException, IOException{
    final SVNUpdateClient updateClient =
        SVNClientManager
            .newInstance().getUpdateClient();
    if(log != null) updateClient.setDebugLog(log);
    updateClient.doSwitch(basedir,
        SVNURL.parseURIEncoded(branchUrl),
        SVNRevision.HEAD,
        SVNRevision.HEAD,
        SVNDepth.INFINITY,
        false,
        false);
}

Credentials are apparently automatically picked up from the ~/.subversion directory.

(And of course it doesn't have to be a branch, SVN doesn't make a difference between tags, branches or any other path)

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