经过代理的ssh、为git指定ssh选项 发表于 2022-02-12 | 分类于 笔记 由于防火墙的存在,对某些网络之外的服务器进行管理时,常常需要使用魔法打败魔法: 1$ ssh suzuco@suzuco.moe -o "ProxyCommand=nc -X 5 -x <proxy>:<port> %h %p" -o "IPQoS lowdelay throughput" 但是git config只能配置curl选项,ssh方式的话就需要 1$ GIT_SSH_COMMAND="ssh -o \"ProxyCommand=nc -X 5 -x localhost:1080 %h %p\" -o \"IPQoS lowdelay throughput\"" git pull 本文作者: 橘猫すず子 本文链接: https://suzuco.moe/%E7%AC%94%E8%AE%B0/2022/02/12/git-ssh-options/ 版权声明: 本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 许可协议。转载请注明出处!