Thanks to anyone who wants to help
Ask HN: Self-taught devs – anybody struggling with Git/code mgmt too?
1–5 of 5 posts
Re: Ask HN: Self-taught devs – anybody struggling with Git/code mgmt too?
#2Re: Ask HN: Self-taught devs – anybody struggling with Git/code mgmt too?
#3If you like books I recommend Humble and Farley's "Continuous Delivery: Reliable Software Releases through Build, Test, and Deployment Automation". It was written before cloud native practices like containers were mainstream so not all the advice will be relevant but it has good chapters on source code management practices and CI.
Re: Ask HN: Self-taught devs – anybody struggling with Git/code mgmt too?
#4Likewise for all our new hires (we tend to aim for recent bootcamp and college graduates): None of them had used version control before and all had to learn on the job.
As for git specifically, this is the single most useful thing I've ever seen for creating the right mental model of commits/branches - it's helped almost everyone I've sent it to: https://learngitbranching.js.org/
Re: Ask HN: Self-taught devs – anybody struggling with Git/code mgmt too?
#5It's extremely unlikely a formal CS education would have helped. Not a single professor in mine even mentioned version control, let alone taught anything about it. It's not the type of knowledge CS focuses on anyway. Likewise for all our new hires (we tend to aim for recent bootcamp and college graduates): None of them had used version control before and all had to learn on the job. As for git specifically, this is t…