如何让 Windows 上的 Mercurial 使用 SSH 密钥进行推/拉?

发布于 2024-10-05 04:58:59 字数 71 浏览 2 评论 0原文

如何告诉 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 技术交流群。

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

发布评论

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

评论(2

彼岸花似海 2024-10-12 04:58:59

在 Windows 上,请参阅从 Windows 客户端访问 SSH 控制的存储库:您需要 PuTTY、 plink 和特定的配置设置。

要将其放入特定存储库,请放入 .hg/hgrc

[ui]
ssh="C:\path to\plink.exe" -ssh -i "C:\your path to\private.key"

另请注意,如果使用 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

[ui]
ssh="C:\path to\plink.exe" -ssh -i "C:\your path to\private.key"

Also note that you don't need to specify the key path if you use pageant.

葬花如无物 2024-10-12 04:58:59

您需要使用 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.

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