配置和使用vscode

插件

sftp

  • 用途
  • 配置
{
    "protocol": "sftp",
    "host": "10.179.224.148",
    "port": 22,
    "username": "fish",
    "password": "Changeme_123",
    "remotePath": "/home/fish/a_py_dev",
    "uploadOnSave": true,
    "syncMode": "update",
    "ignore": [
        "**/.vscode/**",
        "**/.git/**",
        "**/.DS_Store"
    ],
    "watcher": {
        "files": "glob",
        "autoUpload": true,
        "autoDelete": true
    }
}

猜你喜欢

转载自www.cnblogs.com/rockboi/p/10282202.html