为 JGit 指定 SSH 密钥
我想知道如何使用jgit使用指定的ssh密钥文件(即不在中的一个)连接到github。~/.ssh/
不幸的是,我不确定如何正确使用。我尝试创建一个设置,就像本文中的设置:将密钥与JGit一起使用以安全地访问Git存储库JschConfigSessionFactory
我使用调用git但是,我得到这个错误(日志中省略了特定的存储库):git.push().setRemote(remotePath).call();
org.eclipse.jgit.api.errors.TransportException: https://github.com/user/repo: not authorized
at org.eclipse.jgit.api.PushCommand.call(PushCommand.java:160)
at gitio.GitInterface.pushToRemote(GitInterface.java:145)
at engine.GitInterfaceTester.main(GitInterfaceTester.java:25)
Caused by: org.eclipse.jgit.errors.TransportException: https://github.com/user/repo: not authorized
at org.eclipse.jgit.transport.TransportHttp.connect(TransportHttp.java:479)
at org.eclipse.jgit.transport.TransportHttp.openPush(TransportHttp.java:396)
at org.eclipse.jgit.transport.PushProcess.execute(PushProcess.java:154)
at org.eclipse.jgit.transport.Transport.push(Transport.java:1173)
at org.eclipse.jgit.api.PushCommand.call(PushCommand.java:156)
... 2 more
我注意到,中的自定义重写方法实际上从未被调用过。这几乎可以肯定是问题的原因...但不知道为什么它们没有被调用;我把自定义传递给使用JschConfigSessionFactory
JschConfigSessionFactory
SshSessionFactory
SshSessionFactory.setInstance(sessionFactory);
有谁知道我做错了什么?