当前位置:  开发笔记 > 运维 > 正文

git可以通过ssh端口转发工作吗?

如何解决《git可以通过ssh端口转发工作吗?》经验,为你挑选了2个好方法。

我的情况是,我可以ssh到放置git repos的ComputerB(Code repos).但我的本地连接速度太慢,无法克隆代码.我可以ssh到更快的另一台机器(ComputerA),所以我想通过ComputerA克隆代码.

这就是我做的:

           ssh tunnel                           ssh tunnel
MyComputer ----------> ComputerA (I can ssh to) ----------> ComputerB (where the Code repos is and I can ssh to but too slow)

使用这样的命令:

ssh -L1234:ComputerA_ip:22 Code_repos_ip

然后:

git clone git+ssh//localhost/repos local_repos (how can I assign the port 1234?)

如果这不起作用,我还能做什么?



1> Brian Campbe..:

如何通过两个连接使您的连接更快?

无论如何,你应该能够做到:

git clone git+ssh://localhost:1234/repos local_repos



2> Alexander Ar..:

此外,您可以尝试将端口号放入~/.ssh/config:

Host ComputerA
HostName localhost
Port 1234

然后在git clone命令中使用ComputerA:

git clone git+ssh://ComputerA/repos local_repos

推荐阅读
和谐啄木鸟
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有