Bootstrap

vscode远程开发 git clone错误 间接解决方法

刚开始用vscode尝试远程开发,在setup过程有不少错误,参考其他前辈的解决方案。

此文对git clone问题提供另一种间接的解决方法。

一、错误过程及图示

在vscode环境下,用remote ssh连接远程服务器。在远程服务器中,需要git clone。采用指令git clone https://xxx...。

  

期间我尝试用了重置git config的方法,及把https改成git,但是还是有错:connection timed out, empty reply from server。 

二、间接解决方法:git clone到本地,再上传到远程服务器

第一步:git clone到本地

打开cmd,输入指令 git clone https://...

第二步:将从github复制下来的文档上传到远程服务器

在cmd中,用以下格式输入指令

scp -r [source folder 在本地路径] [email protected]: 在远程服务器路径

例:scp -r C:\... [email protected]: /home/...

;