1 下载VSCODE, Windows版本
https://code.visualstudio.com/updates/v1_85
2 安装插件
3 配置SSH密钥,上传公钥到服务器
4连接成功,直接操作远程目录和文件
远程开发
https://code.visualstudio.com/docs/remote/remote-overview
https://www.jianshu.com/p/37bbec378800
https://zhuanlan.zhihu.com/p/294933020
vscode连接不上远程服务器界面一直卡在“Setting up SSH Host XX:Copying VS Code Server to host with scp”
解决问题的过程:
https://blog.csdn.net/m0_46210452/article/details/132364248
一般这个时候,/home/xxxx/.vscode-server/bin(具体路径视情况而定)文件夹下会有一个这个文件夹,它的名字包含一长串数字,下文中我们将这串数字称为commit_id
把${commit_id}替换成刚刚记录的commit_id,然后使用如下的链接进行下载(注意:下面这串链接是输入进浏览器的导航栏进行下载)
https://update.code.visualstudio.com/commit:${commit_id}/server-linux-x64/stable
举例:
1.浏览器输入,并下载文件,
https://update.code.visualstudio.com/commit:8b3775030ed1a69b13e4f4c628c612102e30a681/server-linux-x64/stable
2. 把下载tar文件存入 ~/.vscode-server/bin
cp ~/Downloads/vscode-server-linux-x64.tar.gz .
3.解压
tar -zxvf vscode-server-linux-x64.tar.gz --strip-components 1
标签:code,Code,Remote,vscode,server,VS,https,commit,com From: https://www.cnblogs.com/7star/p/18021733