欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vscode配置sftp

程序员文章站 2022-02-17 11:27:52
...

安装sftp扩展,在命令行输入sftp会有.vscode下建立sftp.json配置如下:

{
    "protocol": "sftp",
    "host": "web.test.com",
    "port": 22,
    "username": "guojianbing",
    "password": "88888888888",
    "remotePath": "/path/www/website",
    "ignore": [
        "**/.vscode/**",
        "**/.idea/**",
        "**/.git/**",
        "**/.DS_Store"
    ]
}
相关标签: ide