Home > Positioning > Subjects > Git

Git

Git is a distributed version-control system: a tool for recording the history of a set of files and coordinating work on them across many people and machines. Its defining choices — content-addressed snapshots, a complete copy of history in every clone, and integrity guaranteed by hashing — set it apart from the centralised systems that preceded it, and it has since become the near-universal standard for source control.

Three ideas organise the design:

Origin

Git was written by Linus Torvalds in April 2005. The Linux kernel project had used the proprietary BitKeeper system under a free-of-charge licence; when that licence was withdrawn in 2005 — after Andrew Tridgell reverse-engineered BitKeeper’s protocol, prompting its owner Larry McVoy to revoke it — the kernel needed a replacement, and no free alternative met Torvalds’ requirements for speed and a genuinely distributed model. He began Git on 3 April 2005; it was self-hosting within days, managed the kernel’s 2.6.12 release that June, and reached version 1.0 that December. Torvalds handed maintainership to Junio Hamano in July 2005, who has maintained it ever since.

On the name, Torvalds: “I’m an egotistical bastard, and I name all my projects after myself. First ‘Linux’, now ‘git’.” The repository’s own description reads “the stupid content tracker.”

Pages

Persons

Sources


See also: Linus Torvalds