I'm trying to work on my code every chance I've got. Is it possible to work on the same code using VsCode with two different computers?
If it's possible, what extension would I need?
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (6)
google drive might help if you have multiple files.
just zip it up and upload it then when you switch computers, download it and extract it to vscode.
you can do something similar with repl.it which can save a copy of your code online, so you don't even have to use vs code, but you can also copy and paste into there and just navigate to the repl url when you switch computers and copy and paste into vscode onto the second computer
lastly is github which is preferred by most i think, but has the highest learning curb. the benefits being that github has become kind of the go-to for people to showcase their coding projects to employers, list it on your resume, and contribute to open source projects that you hold dear. so it might just be worth it to learn git commands and set up your environment on both of your computers
Might be related, especially on
extensions
andsettings.json
migration.Why and how you should migrate from Visual Studio Code to VSCodium
Mr F. ・ Jan 10 ・ 3 min read
Maybe the Live share feature might help ? visualstudio.microsoft.com/service...
git ..?
I.e. version control. Git just happens to be the most popular these days.
Morris John - See the tutorial if you're not familiar with the concept yet.