编辑远程 ssh 隧道 vscode 连接上的远程路径

问题描述 投票:0回答:1

我在 Windows 11 上使用 vs code,并且与 vscode 服务器有远程隧道连接,工作正常,但我想在连接到远程代码后更改我所在的路径。 远程服务器是 PI 5 机器上的 Ubuntu 24。

有没有办法改变我登陆的远程路径?

谢谢

vscode-remote vscode-remote-ssh
1个回答
0
投票

在 VSCode 中,我认为如果您使用 Remote-SSH 扩展,您可以覆盖您的配置文件:

转到 ->

Remote-SSH: Open SSH Configuration File...

然后您可以使用新的远程路径进行更改

{
    "host": "my-remote-server-PI-5",
    "hostName": "remote.server.com",
    "user": "username",
    "identityFile": "~/.ssh/id_rsa",
    "remotePath": "/path/to/your/default/directory"
}
© www.soinside.com 2019 - 2024. All rights reserved.