1. 程式人生 > >vscode伺服器同步----sftp外掛

vscode伺服器同步----sftp外掛

  • 安裝外掛
  • 開啟指定的空目錄
  • Ctrl + Shift + P輸入 sftp:config
  • 編輯生成的sftp.json檔案
{
    "protocol": "sftp",
    "host": "192.168.3.144",
    "username": "root",
    "password": "root",
    "port": 4022,
    "uploadOnSave": false,
    "downloadOnOpen": false,
    "watcher": {
        "files": "**/*"
, "autoUpload": true, "autoDelete": true }, "ignore": [ "node_modules", ".vscode", ".idea", ".DS_Store" ], "remotePath": "/hexo" }
  • 然後Ctrl + Shift + P輸入 sftp:Download即可獲取遠端程式碼,並保持同步
  • 不再有檔案修改狀態的問題