I’m a hobbyist and butcherer of python code. Quite often i’m jumping between multiple laptops / desktops playing around with different projects. Just wondering what the best workflow is or suggestions people have around syncing projects so I can edit and work on projects regardless of the computer. Is this something that people generally manage through github?? Thanks in advance for the thoughts!


Yes, using a remote code repository (i.e. git) - plenty of options aside from github.
Merely git pull the repository to whatever machine you want to work on and commit the changes back (rinse, repeat)
Ok perfect, thank you! I’ll have to spend a bit of time learning best practice around git. Thanks for the prompt about GitHub alternatives.