如何为Git同步操作指定ppk?
有没有办法指定 Git 操作使用什么键?
或者更好的是,是否有可能以某种方式让 Git 使用选美?我尝试了一下,运行 pageant 并打开了一个 ppk 文件,但 Git 似乎没有使用它。
Is there a way to specify what key to use for Git operations?
Or better yet, is it possible to somehow make Git to use pageant? I tried it, ran pageant and opened a ppk file, but Git does not seem to use it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
GIT_SSH
设置为plink
,这是 putty 的命令行部分。然后,如果pageant
已经在运行,它将使用它。 msysGit 安装程序不会为您执行此操作,除非您已经使用 ReleaseNotes 文件中提到的 putty。如果您将 GIT_SSH 设置为 TortoiseSvn 版本的 plink,它甚至会针对有关接受新密钥的任何问题引发对话框,从而避免您需要使用 putty 手动初始化任何新连接来自行处理。Set
GIT_SSH
toplink
which is the command-line part of putty. Then it will usepageant
if that is already running. The msysGit installer will not do that for you unless you have already been using putty as mentioned in the ReleaseNotes file. If you set GIT_SSH to the TortoiseSvn version of plink it will even raise dialogs for any questions about accepting new keys which avoids you needing to initialize any new connection manually with putty to handle that yourself.