通过非标准 SSH 端口使用 Git

发布于 2024-12-23 18:00:42 字数 1459 浏览 3 评论 0原文

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

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

发布评论

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

评论(4

旧时模样 2024-12-30 18:00:42

您也许可以使用新的智能http传输而不是ssh来发布和接收对象。它是通过 http 进行的,应该更加开放。

You might be able to use the new smart http transport rather than ssh to publish and receive objects. It's over http and that should be more open.

萌无敌 2024-12-30 18:00:42
git remote add foo ssh://foobar.com:1234/foo

工作得很好(tcpdump 确实显示我尝试联系端口 1234)。

git remote add foo ssh://foobar.com:1234/foo

works just fine (tcpdump does show me attempts to contact port 1234).

花落人断肠 2024-12-30 18:00:42

您应该能够通过在存储库的 URI 中使用冒号分隔符来指定不同的端口:

git clone ssh://my.domain.name:2222/repo.git

You should be able to specify a different port simply by using the colon separator in the repo's URI:

git clone ssh://my.domain.name:2222/repo.git
奢华的一滴泪 2024-12-30 18:00:42

SSH 隧道是加密路径,允许用户绕过禁止某些 Internet 流量的防火墙。 指南将帮助您使用免费软件客户端 Putty 创建 SSH 隧道。

SSH tunnels are encrypted pathways that allow users to bypass firewalls that prohibit certain Internet traffic. This guide will help you create an SSH tunnel with Putty, a free software client.

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