我正试图从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中尝试了所有答案,没有任何对我有用。
对我来说,任何帮助都会很棒。
答案 0 :(得分:2)
您看到的错误表明它正在尝试从不存在的配置键读取。此特定密钥使用远程名称,而不是URL。
似乎pullCmd.setRemote(remoteUrl);
行需要远程名称而不是URL。如果您已经克隆了存储库,那么默认情况下您将拥有一个名为origin
的远程控制器,而不是:
pullCmd.setRemote(remoteUrl);
尝试将值设置为origin
:
pullCmd.setRemote("origin");