Source Control Concepts
Source Control Concepts ~/cloud-plus /modules/source-control.md bash — repo # Source Control Concepts Application code, IaC deployment files, CaC configs — all of it changes constantly, and someone needs to know which version is the real one. Git is how that gets tracked. Git Version Control GitHub Actions Exam Objective 5.1 8.23–24 Source control 8.25 Use cases 8.26–27 Repos & commands Git flow 8.28 Local repo 8.29 Branching 8.30 Pull requests 8.31 Code review 8.32 GitHub Actions Lesson Introduction Code management spans developer code, Infrastructure as Code deployment projects, and Configuration as Code tasks. Code naturally evolves — so tracking and identifying the definitive current version is critical. This lesson covers Git, one of the most common source control tool...