Hi, does anyone know if there's some tool or preferrably some VS extension that allows me to sync my changes across multiple computers? I already have an SCC system, but I'm looking for something more "live" here.
Use case #1: I'm developing a multiplayer game which I'm testing on multiple computers on a network. I have VS open on all these computers so that I can easily debug each client. I find an issue and create some potential fix. At the moment I have to either apply the fix manually on each computer, commit to SCC and update on all other computers, copy the files to all computers or use some shared directory.
Use case #2: I'm working with a developer at a separate location. We want to collaborate on a single issue. At the moment we do micro-commits to the SCC system which may or may not leave the code base in a broken state. It's also very slow/ineffective since we require comments on each commit and since each commit/update takes at least a few seconds to complete. What if I just want some feedback on the method I'm currently implementing?
I keep thinking that there's gotta be a better way to do these things. Some form of light-weight live sync.