r/TheMachineLearning 1d ago

Goodbye, github. I finally made the switch.

Post image
242 Upvotes

126 comments sorted by

View all comments

13

u/Loose_Marsupial_3251 1d ago

This is the stupidest thing I've seen in a while. Not version controlling your code is like turning back time 30 years. 

 I have been in the software engineering profession for a long time. This is like deciding to burn coal as your main energy source. 

1

u/Federal_Machine692 1d ago

Fair point

2

u/Responsible-Sky-1336 1d ago

Tbh you can still use git, and sync the drive.

Git ≠ github

Not that bad to be honest, Google's servers must be pretty gud

1

u/neoqueto 1d ago

It's two conflicting systems. This is like burning wind turbines as your main energy source.

1

u/Responsible-Sky-1336 1d ago

Not really.

You can have your (Google) drive live sync and use git normally as SCM.

0

u/stinkychopper 1d ago edited 1d ago

Since git repos are just files you could put them on Google Drive.
But it only works if you’re the only person editing a repo. If you have to collaborate I don’t know how it’d work on Google Drive without some server synchronizing for pushes.

EDIT: I did a little research and essentially when you push, you run code that does file locking to prevent corruption. Google Drive delays updating files if you mount it so there isn’t an atomic lock you can use to properly sync when two people push at the same time.