https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-ssh
# windows下生成key
ssh-keygen -t rsa -C "your_email@example.com"
# git bash上传 id_rsa.pub 到 远程linux
ssh-copy-id -i ~/.ssh/id_rsa.pub username@x.x.x.x
C:\Users\myUser.ssh\config
Host my_linux_name
HostName 192.168.2.5
Port 22
User root
原文:https://www.cnblogs.com/codeRhythm/p/12912875.html