windows下vscode远程连接配置

文章目录

  • remote-ssh插件
  • 设置git环境变量
  • 配置免密

remote-ssh插件

vscode安装remote-ssh插件,并进行设置。
windows下vscode远程连接配置_第1张图片

# Read more about SSH config files: https://linux.die.net/man/5/ssh_config
Host 任意 (习惯用ip)
    HostName ip
    User 用户名

设置git环境变量

PATH增加一项(ssh的几个.exe在这个路径下):

C:\Program Files\Git\usr\bin

配置免密

  • windows生成key。
ssh-keygen -t rsa -b 4096
  • 将id_rsa.pub的内容复制到远程主机的~/.ssh/authorized_keys里。

  • 重启远程主机ssh服务:service ssh restart

你可能感兴趣的:(常用)