git is a distributed version control system created by Linus Torvalds (also creator of Linux).
I think of it as “save points with history + branching” for code.
Core workflow:
git addto stage changesgit committo capture a snapshotgit branch/git switchto work in parallel lines of developmentgit mergeor rebase to bring work back together
Platforms like github host git repositories and add collaboration workflows around pull requests, issues, and CI.