Git
From Just Solve the File Format Problem
(Difference between revisions)
Dan Tobias (Talk | contribs) |
(→Links) |
||
Line 22: | Line 22: | ||
== Links == | == Links == | ||
* [[Wikipedia:Git (software)|Wikipedia article]] | * [[Wikipedia:Git (software)|Wikipedia article]] | ||
− | * [ | + | * [https://git-scm.com/ Official site] |
+ | * [https://libgit2.org/ libgit2] | ||
* [http://stevelosh.com/blog/2013/04/git-koans/ Git koans] | * [http://stevelosh.com/blog/2013/04/git-koans/ Git koans] | ||
* [https://bup.github.io/ bup: backup system based on Git packfile] | * [https://bup.github.io/ bup: backup system based on Git packfile] | ||
* [http://think-like-a-git.net/ Think like a Git: A guide for the perplexed] | * [http://think-like-a-git.net/ Think like a Git: A guide for the perplexed] |
Revision as of 13:00, 14 April 2020
git is an open-source revision control system for software development, originally developed by Linus Torvalds for tracking Linux kernel sources, before being widely adopted by many other projects and companies.
Specifications
- GIT repository layout
- Git pack format
- Unpacking Git packfiles
- What is the format of a git “blob”?
- gitignore format
Related formats
- SHA-1 - Used to create object identifiers
- zlib - Used to compress data
- Virtual File System for Git