我正在尝试使用Jgit从远程存储库获取克隆。代码如下:
File file = new File(localPath);
CloneCommand cloneCmd = git.cloneRepository();
try {
cloneCmd.setURI(remotePath).setDirectory(file).call();
} catch (GitAPIException e) {
e.printStackTrace();
}
但是,我得到org.eclipse.jgit.api.errors.TransportException:无法打开git-upload-pack。该错误的解决方法是什么?