Why does nobody talk about version control for solo projects
I spent about six months building a little weather app on my own last year. Never used Git or any version control because I figured it was only for teams working together on big codebases. Then one afternoon I made a tiny change to my main file, saved it, and immediately realized I had broken everything. I spent almost two hours trying to undo what I did, with no backup and no way to go back. That frustration finally pushed me to watch a beginner Git tutorial at 11 PM on a Wednesday night. Now I commit my code every 20 minutes or so, even if nobody else will ever see it. Has anyone else had that moment where they wished they started using version control way earlier?