Zexian Li

VScode同步代码神器:sftp

2020-09-09 · 2 min read

VScode的sftp插件可以将本地代码自动保存到服务器上,体验棒棒,简要记录👏。

1. 下载VScode并安装sftp插件

2. 配置

使用快捷键CTRL+SHIFT+P 打开命令行,选择SFTP: Config打开用户设置,即会在项目根目录下生成.vscode文件夹,修改其中的sftp.json文件。
记录我的json文件如下所示:

{
    "name": "My Server",
    "host": "xxx.xxx.xxx.xxx",
    "protocol": "sftp",
    "port": 22,
    "username": "xxx",
    "password": "xxx",
    "remotePath": "xxx",
    "uploadOnSave": true,
    "downloadOnOpen":false,
    "ignore": [
        "**/.vscode/**",
        "**/.git/**",
        "**/.DS_Store"
    ],
    "watcher": {
        "files": "*",
        "autoUpload": false,
        "autoDelete": false
    }
}

3. 使用

每次保存(CTRL+S)都会将文件同步到服务器上;当需要对全部工程文件进行同步时,可以在VScode的文件夹处单击右键进行具体选择。

Bad decisions make good stories.