Moving projects between Windows/Mac
-
What's the best practice for moving projects between operating systems? Is it ok to copy project folders from one OS to another, or do we need to copy the XML files/unique project files such as images etc?
-
What's the best practice
Use git with an online repo like github/gitlab/codeberg/etc.
Second best is to use some kind of auto-sync software.
Third best is to just copy the files manually.
You probably want to exclude samples, binaries, and other large files as you don't need these to build your project. Apart from that just take everything else and you should be good to go.
-
@d-healey Great, I'll use Git in that case. Thanks!