使用私有BitBucket存储库进行身份验证以使用JGit进行克隆

时间:2018-01-06 09:09:42

标签: git bitbucket jgit

我想将远程私有Atlassian BitBucket存储库克隆到我的计算机上。

请您介绍一下如何完成这个过程。

我对身份验证过程特别感兴趣。我是否需要使用(对于Atlassian BitBucket)UsernamePasswordCredentialsProvider作为CredentialsProvider,为了做到这一点,应该执行它还是其他一些步骤?

已更新

我尝试了以下解决方案:

    SshSessionFactory sshSessionFactory = new JschConfigSessionFactory() {
        @Override
        protected void configure(Host host, Session session) {
            session.setPassword( "password" );
            session.setConfig("StrictHostKeyChecking", "no");
        }
    };
    CloneCommand cloneCommand = Git.cloneRepository();
    cloneCommand.setURI("ssh://user@bitbucket.org/reponame.git");
    //cloneCommand.setURI("git@bitbucket.org:user/reponame.git");
    cloneCommand.setDirectory(new File("reponame"));
    cloneCommand.setTransportConfigCallback(new TransportConfigCallback() {
        @Override
        public void configure(Transport transport) {
            SshTransport sshTransport = (SshTransport) transport;
            sshTransport.setSshSessionFactory(sshSessionFactory);
        }
    }); 
    cloneCommand.call();

但它失败并出现以下异常:

    Exception in thread "main" org.eclipse.jgit.api.errors.TransportException: git@bitbucket.org:user/reponame.git: Auth fail
    at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:248)
    at org.eclipse.jgit.api.CloneCommand.fetch(CloneCommand.java:306)
    at org.eclipse.jgit.api.CloneCommand.call(CloneCommand.java:200)
    at com.bitbucket.BitBucketTest.cloneViaSsh(BitBucketTest.java:63)
    at com.bitbucket.BitBucketTest.main(BitBucketTest.java:39)
Caused by: org.eclipse.jgit.errors.TransportException: git@bitbucket.org:user/reponame.git: Auth fail
    at org.eclipse.jgit.transport.JschConfigSessionFactory.getSession(JschConfigSessionFactory.java:172)
    at org.eclipse.jgit.transport.SshTransport.getSession(SshTransport.java:140)
    at org.eclipse.jgit.transport.TransportGitSsh$SshFetchConnection.<init>(TransportGitSsh.java:280)
    at org.eclipse.jgit.transport.TransportGitSsh.openFetch(TransportGitSsh.java:170)
    at org.eclipse.jgit.transport.FetchProcess.executeImp(FetchProcess.java:137)
    at org.eclipse.jgit.transport.FetchProcess.execute(FetchProcess.java:123)
    at org.eclipse.jgit.transport.Transport.fetch(Transport.java:1269)
    at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:237)
    ... 4 more
Caused by: com.jcraft.jsch.JSchException: Auth fail
    at com.jcraft.jsch.Session.connect(Session.java:519)
    at org.eclipse.jgit.transport.JschConfigSessionFactory.getSession(JschConfigSessionFactory.java:126)
    ... 11 more

2 个答案:

答案 0 :(得分:4)

根据this page,Bitbucket允许通过SSH进行身份验证。在这种情况下,您不需要CredentialsProvider

但是,您可能需要提供SshSessionFactory

SshSessionFactory sshSessionFactory = new JschConfigSessionFactory() {
  @Override
  protected void configure( Host host, Session session ) {
    // ...
  }
};
CloneCommand cloneCommand = Git.cloneRepository();
cloneCommand.setURI( "ssh://user@example.com/repo.git" );
cloneCommand.setTransportConfigCallback( new TransportConfigCallback() {
  @Override
  public void configure( Transport transport ) {
    SshTransport sshTransport = ( SshTransport )transport;
    sshTransport.setSshSessionFactory( sshSessionFactory );
  }
} );

注意,在TransportConfigCallback::configure中,传输参数被盲目地转换为SshTransport,这意味着此TransportConfigCallback仅适用于SSH URL。

如果您的Bitbucket服务器需要密码保护的SSH连接,您可以使用SshSessionFactory的{​​{1}}方法提供密码,例如

configure

私钥从SshSessionFactory sshSessionFactory = new JschConfigSessionFactory() { @Override protected void configure( Host host, Session session ) { session.setPassword( "password" ); } } ); 加载。如果您的私钥文件的名称不同或位于其他位置,我建议覆盖<user-home>/.ssh。调用基本方法后,可以像这样添加自定义私钥:

createDefaultJSch()

有关详细信息,您可能需要阅读JGit Authentication Explained,这是我几年前写的一篇文章。

答案 1 :(得分:0)

我遇到了同样的问题,阅读了Rudger Herrmann的解决方案后,我仍然遇到User Auth失败的情况。我发现在添加自己的身份之前,将行defaultJSch.removeAllIdentity();添加到覆盖的createDefaultJSch中解决了该问题:

@Override
protected JSch createDefaultJSch(FS fs) throws JSchException {
    JSch defaultJSch = super.createDefaultJSch(fs);
    defaultJSch.removeAllIdentity();
    defaultJSch.addIdentity("path/to/key", "password");
    return defaultJSch;
}

我猜这可以防止defaultJSch使用某些奇怪的默认配置,并强迫它使用您添加的身份?另外,在defaultJSch::addIdentity中添加密码使得在configure中添加密码是可选的。