使用 jgit 的 Java git 客户端

发布于 2024-12-13 00:39:53 字数 199 浏览 2 评论 0原文

我在使用用 java 编写的 git 客户端时遇到一些困难。我正在使用 jGit 库通过 ssh 连接 git 服务器。问题是我不知道如何指定私钥的路径及其密码。我在 jGit 文档中找不到任何关于我需要调用哪些函数的示例。据我了解,jGit 库使用 JSch 通过 ssh 连接到服务器,并且 JSch 支持私钥和密码。有人有这方面的经验或者有一些工作代码吗?

谢谢

I am having some difficulties with a git client written in java. I am using the jGit library to connect through ssh on the git server. The problem is that i don't know how to specify the path to the private key and the passphrase for it. I couldn't find any examples in the jGit documentation about what functions i need to call. From what i read the jGit library is using JSch to connect to the server using ssh and JSch supports private keys and passphrases. Does anyone have any experience with this or has some working code?

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柒七 2024-12-20 00:39:54

我从来没有使用过jGit,但是通过查看Javadocs(这些文档似乎无法在线浏览,但可以下载)您需要配置一个SshSessionFactory(即创建JSchConfigSessionFactory的子类,并重写其configure方法)。

JSch 对象支持私钥及其addIdentity 方法,密码可以通过 UserInfo 对象到每个单独的 JSch 会话

(免责声明:JSch Javadoc 是我编写的。)

I didn't ever use jGit, but from looking at the Javadocs (which are seemingly not online browsable, but can be downloaded) you need to configure a SshSessionFactory (i.e. create a subclass of JSchConfigSessionFactory, and override its configure method).

The JSch object supports private keys with its addIdentity methods, and the passphrases can be given with UserInfo objects to each individual JSch Session.

(Disclaimer: The JSch Javadoc was written by me.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文