Reputation: 18147
In my organization , the development machines are in office network and lab environment is in private network. Due to this code will be written in lab environment then we will copy it to office network and push the changes.
Doing this manually is error prone. Is there any plugin available in VS code to compare a folder in local machine and remote machine then sync?
I would like to sync between folders in different machine
/root/labfolder/feb4 <-> root@devmachine:/root/devFolder/feb4
Upvotes: 0
Views: 2712
Reputation: 46
Try sftp extension. You can also upload a file on save. See this documentation: https://marketplace.visualstudio.com/items?itemName=liximomo.sftp
Upvotes: 1