如何让 Windows 上的 Mercurial 使用 SSH 密钥进行推/拉?
如何告诉 TortoiseHg(或一般的 Mercurial)我想在向远程存储库推送/拉取远程存储库时使用给定的 SSH 密钥?
How to tell TortoiseHg (or Mercurial in general) that I want to use a given SSH key when pushing/pulling to/from a remote repository?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Windows 上,请参阅从 Windows 客户端访问 SSH 控制的存储库:您需要 PuTTY、 plink 和特定的配置设置。
要将其放入特定存储库,请放入
.hg/hgrc
另请注意,如果使用 pageant,则不需要指定密钥路径。
On Windows, see Accessing SSH-controlled repositories from a Windows client: you need PuTTY, plink and a particular config setting.
To put that in a particular repository, put in
.hg/hgrc
Also note that you don't need to specify the key path if you use pageant.
您需要使用 PuTTY,在其中设置一个配置文件以连接到远程存储库。然后在 TortoiseHg 中你可以连接到 ssh://profilename/
例如我为 bitbucket 设置了一个并将其命名为 bitb,所以连接是
ssh://bitb/url-to-repo。
You need to use PuTTY, set up a profile in that for the connection to the remote repository. and then in TortoiseHg you can then connect to ssh://profilename/
e.g. I set one up for bitbucket and called it bitb, so the connection is
ssh://bitb/url-to-repo.