vscode插件-ftp-sync
其他记录 2018-10-05 15:16:55

 初始化ftp配置:

ctrl+shift+P 输入:Ftp-sync: Init

出现:

PHP Code复制内容到剪贴板
  1. {  
  2.     "remotePath""./",  
  3.     "host""host",  
  4.     "username""username",  
  5.     "password""password",  
  6.     "port": 21,  
  7.     "secure": false,  
  8.     "protocol""ftp",  
  9.     "uploadOnSave": false,  
  10.     "passive": false,  
  11.     "debug": false,  
  12.     "privateKeyPath": null,  
  13.     "passphrase": null,  
  14.     "ignore": [  
  15.         "\\.vscode",  
  16.         "\\.git",  
  17.         "\\.DS_Store"  
  18.     ],  
  19.     "generatedFiles": {  
  20.         "uploadOnSave": false,  
  21.         "extensionsToInclude": [],  
  22.         "path"""  
  23.     }  
  24. }  

配置服务器账号路径等信息

该配置信息在当前目录的 ./.vscode/ftp-sync.json 文件中。

 

通过命令 Ftp-sync: Sync Local to Remote 和 Ftp-sync: Sync Remote to Local 同步服务器端和客户端的文件。

通过命令 commit 提交修改。

 

 

 

 

本文来自于:http://www.yoyo88.cn/note/other/374.html

Powered by yoyo苏ICP备15045725号