vscode ftp-sync 插件自动上传使用

1、下载ftp-sync插件(extensions中直接搜索安装即可)

2、ctrl+shift+p 选择执行Ftp-sync: init

{
    "remotePath": "/usr/local/orange", //代码路径
    "host": "111.111.111.111", //IP地址
    "username": "root", //登录名
    "password": "root", //密码
    "port": 22,
    "secure": false,
    "protocol": "sftp",
    "uploadOnSave": true, //设置成true,保存后会自动同步
    "passive": false,
    "debug": true, //默认是false开启可以看错误信息
    "privateKeyPath": null,
    "passphrase": null,
    "agent": null,
    "allow": [],
    "ignore": [
        "\\.vscode",
        "\\.git",
        "\\.DS_Store"
    ],
    "generatedFiles": {
        "extensionsToInclude": [
            ""
        ],
        "path": ""
    }
}

从远程服务器下载代码到本地
1、本地创建放置的代码目录local_code
2、vscode打开local_code目录
3、ctrl+shift+p按照如下顺序选择:
Ftp-sync: Remote to Local –> . Choose this folder(选择当前目录) –> Full sync(删除本地孤立项)/Safe sync(不删除本地孤立项)/Force download(下载文件,无论更改否) –> Run(全部下载)/Review(选择下载)

本地修改后同步到服务器
有如下几种方法来同步:
1、如果”uploadOnSave”设置为true,每次保存文件的时候会自动同步(如果无效,请关闭vscode后重新再打开,就可以使用了)
2、在左侧文件列表中选择要同步的文件,右键选择:Ftp-sync: Upload File
3、ctrl+shift+p然后选择Ftp-sync:Sync Current file to Remote

Read More

发表回复