Eclipse:如何通过密钥文件将sit克隆到ssh上?

嘿,我使用Eclipse(在运行Ubuntu 10.10时)并想连接到远程git。 通常我会使用egit插件,但现在我需要通过ssh和keyfile进行连接

不幸的是,egit没有“with keyfile”选项,有没有办法用我的密钥文件连接到我的仓库? 是否有一种“隐藏”的方式让Eclipse将参数(-i keyfile)传递给ssh或其他东西?


http://wiki.eclipse.org/EGit/User_Guide/Remote - 我必须在“密钥管理”选项卡中手动加载我现有的密钥。


我不知道egit。 但你通常做的是:

  • 启动ssh-agent(当我的窗口管理器启动时,我的系统会自动启动,所以你必须要google一下如何设置它)

  • 运行ssh-add [你的密钥]

  • 照常使用git over ssh。 它不会要求你输入任何密码,因为ssh-agent会处理它。
  • HTH

    链接地址: http://www.djcxy.com/p/49743.html

    上一篇: Eclipse: How to clone git over ssh with keyfile?

    下一篇: How can I use XPath and DOM to replace a node/element in php?