Skip to content
DevOps Glossary
Contribute
Home / Git

Git

Tool version-control source-code collaboration

The tool that Linus Torvalds built in a fit of rage and named after himself (his words, not ours). Git is a distributed version control system that lets every developer have a full copy of a project’s history on their machine. It’s blazingly fast, absurdly powerful, and has a learning curve that makes people question their career choices at least once a week.

Branching and merging are Git’s superpowers — you can spin up feature branches, experiment wildly, and merge everything back together. Of course, you can also end up in a merge conflict nightmare that makes you contemplate git push --force and pretending nothing happened. The reflog has saved more careers than any monitoring system ever will.

Why it matters: Git is the foundation of virtually all modern software development. Without it, there’s no GitHub, no GitOps, no pull requests, and no way to blame your coworker for that bug introduced six commits ago.

Sponsored

Your job posting here

Related Terms