这几天弄了个虚拟机,在上面开发,需要实时同步就弄了ftp去自动上传
我们先去vs code 上面下载SFTP插件
然后按住
Cral+Shift+P
输入
sftp:config
回车进入配置文件。
{
"name": "mrht",
"host": "192.168.8.8",
"protocol": "ftp",
"port": 21,
"username": "root",
"password": "123456",
"remotePath": "/",
"uploadOnSave": true,
"watcher":{
"files": "**/*",
"autoUpload": true,
"autoDelete": true
}
}
就完成了自动上传!
2 条评论
测试
测试