gpt4 book ai didi

java - 在 JGit 获取异常 "org.eclipse.jgit.api.errors.InvalidConfigurationException: No value for key remote"

转载 作者:行者123 更新时间:2023-11-29 04:20:37 27 4
gpt4 key购买 nike

我正在尝试从托管在 bitbucket 上的远程存储库中提取数据。为此,我正在使用 JGit。我的代码如下;

        Git git = Git.open( new File( localPath+"/.git" ) );

PullCommand pullCmd = git.pull();
pullCmd.setCredentialsProvider(this.credentialsProvider);
pullCmd.setRemoteBranchName(branch);
//pullCmd.setRemote("origin");
pullCmd.setRemote(remoteUrl);

PullResult result = pullCmd.call();
//FetchResult fetchResult = result.getFetchResult();
//MergeResult mergeResult = result.getMergeResult();
//mergeResult.getMergeStatus();

但我总是遇到异常,

    org.eclipse.jgit.api.errors.InvalidConfigurationException: No value for key remote.https://xyz@bitbucket.org/xyz/testproject.git.url found in configuration
at org.eclipse.jgit.api.PullCommand.call(PullCommand.java:266)
at git.GitPullOperation.execute(GitPullOperation.java:37)
at ui.MainScreen.invokeGitOperation(MainScreen.java:214)

尝试了 stackoverflow 中的所有答案,对我来说没有任何效果。

任何帮助对我来说都是很好的。

最佳答案

您看到的错误表明它正在尝试读取不存在的配置键。此特定 key 使用远程名称,而不是 URL。

pullCmd.setRemote(remoteUrl); 行似乎需要远程名称而不是 URL。如果您已经克隆了存储库,默认情况下您将拥有一个名为 origin 的远程,而不是:

pullCmd.setRemote(remoteUrl);

尝试将值设置为 origin:

pullCmd.setRemote("origin");

关于java - 在 JGit 获取异常 "org.eclipse.jgit.api.errors.InvalidConfigurationException: No value for key remote",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49466335/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com