gpt4 book ai didi

java - JGit:传输异常 - 拒绝 HostKey:bitbucket.org

转载 作者:行者123 更新时间:2023-11-30 11:30:47 26 4
gpt4 key购买 nike

我正在使用 JGit 创建和克隆一个存储库(远程是一个 bitbucket 存储库 - 是的,我添加了我的部署 key )。本质上,我:

  1. 创建存储库
  2. 禁用 JSch 严格主机 key 检查
  3. 设置 JSch 凭据(我的 ssh key 受密码保护,因此如果我不指定密码,JSch 将失败)
  4. 克隆存储库

我的代码如下:

  // Create repository
File gitDir = new File(localPath);
FileRepository repo = new FileRepository(gitDir);
repo.create();

// Add remote origin
SshSessionFactory.setInstance(new JschConfigSessionFactory() {
public void configure(Host hc, Session session) {
session.setConfig("StrictHostKeyChecking", "no");
}
});
JschConfigSessionFactory sessionFactory = new JschConfigSessionFactory() {
@Override
protected void configure(OpenSshConfig.Host hc, Session session) {
CredentialsProvider provider = new CredentialsProvider() {
@Override
public boolean isInteractive() {
return false;
}

@Override
public boolean supports(CredentialItem... items) {
return true;
}

@Override
public boolean get(URIish uri, CredentialItem... items) throws UnsupportedCredentialItem {
for (CredentialItem item : items) {
if (item instanceof CredentialItem.StringType) {
((CredentialItem.StringType) item).setValue("myPassword");
}
}
return true;
}
};
UserInfo userInfo = new CredentialsProviderUserInfo(session, provider);
session.setUserInfo(userInfo);
}
};
SshSessionFactory.setInstance(sessionFactory);
git = org.eclipse.jgit.api.Git.cloneRepository()
.setURI(remote)
.setDirectory(new File(localPath + "/git"))
.call();

问题:克隆失败并出现以下错误

org.eclipse.jgit.api.errors.TransportException: git@bitbucket.org:username/blah.git: reject HostKey: bitbucket.org at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:137) at org.eclipse.jgit.api.CloneCommand.fetch(CloneCommand.java:178) at org.eclipse.jgit.api.CloneCommand.call(CloneCommand.java:125)

最佳答案

我也在寻找这个问题的答案,但引用文献很少。我想贡献最终对我有用的东西。我试图使用 jGit 通过 ssh 命令控制台查询 Gerrit。为此,您需要提供密码和 ssh 私钥。

要建立连接,首先必须先配置JSch:

    SshSessionFactory factory = new JschConfigSessionFactory() {

public void configure(Host hc, Session session) {
session.setConfig("StrictHostKeyChecking", "no");
}

@Override
protected JSch
getJSch(final OpenSshConfig.Host hc, FS fs) throws JSchException {
JSch jsch = super.getJSch(hc, fs);
jsch.removeAllIdentity();
//Where getSshKey returns content of the private key file
if (StringUtils.isNotEmpty(data.getSshKey())) {
jsch.addIdentity("identityName", data.getSshKey()
.getBytes(), null, data.getSshPassphrase()
.getBytes());
}
return jsch;
}
};

现在,我无法使用传统方法通过私钥使用 session 。 git.cloneRepository() 将不起作用。您必须设置传输并将 session 工厂分配给它:

String targetRevision = "refs/head/master"; //or "refs/meta/config", "refs/for/master"
Transport transport = null;
transport = Transport.open(git.getRepository(), url);
((SshTransport) transport).setSshSessionFactory(factory);
RefSpec refSpec = new RefSpec().setForceUpdate(true).setSourceDestination(
targetRevision, targetRevision);
transport.fetch(monitor, Arrays.asList(refSpec));

CheckoutCommand co = git.checkout();
co.setName(targetRevision);
co.call();

//Add and make a change:
git.add().addFilepattern("somefile.txt").call();
RevCommit revCommit = git.commit().setMessage("Change.").call();

//Last, push the update:
RemoteRefUpdate rru =new RemoteRefUpdate(git.getRepository(), revCommit.name(),
targetRevision, true, null, null);
List<RemoteRefUpdate> list = new ArrayList<RemoteRefUpdate>();
list.add(rru);
PushResult r = transport.push(monitor, list);

这就是一个简短的小圆圈教程,用于通过 ssh 连接到远程存储库、获取/ checkout 、进行更改以及向上游推送。我希望这可以节省其他人更好地理解 jGit 的时间。

关于java - JGit:传输异常 - 拒绝 HostKey:bitbucket.org,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17591504/

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