Git

For other uses, see Git (disambiguation).
Git

A command-line session showing repository creation, addition of a file, and remote synchronization
Original author(s) Linus Torvalds[1]
Developer(s) Junio Hamano and others[2]
Initial release 7 April 2005 (2005-04-07)
Stable release
2.11.0 / 29 November 2016 (2016-11-29)
Repository git-scm.com/downloads
Development status Active
Written in C, Shell, Perl, Tcl, Python[3]
Operating system POSIX: Linux, Windows, macOS
Platform IA-32, x86-64
Available in English
Type Version control
License GNU GPL v2[4] and GNU LGPL v2.1[5]
Website git-scm.com

Git (/ɡɪt/[6]) is a version control system (VCS) that is used for software development[7] and other version control tasks. As a distributed revision control system it is aimed at speed,[8] data integrity,[9] and support for distributed, non-linear workflows.[10]

Git was created by Linus Torvalds in 2005 for development of the Linux kernel, with other kernel developers contributing to its initial development.[11] Its current maintainer is Junio Hamano.

As with most other distributed version control systems, and unlike most client–server systems, every Git directory on every computer is a full-fledged repository with complete history and full version tracking abilities, independent of network access or a central server.[12]

Like the Linux kernel, Git is free software distributed under the terms of the GNU General Public License version 2.

History

Git development began in April 2005, after many developers of the Linux kernel gave up access to BitKeeper, a proprietary source control management (SCM) system that they had formerly used to maintain the project.[13] The copyright holder of BitKeeper, Larry McVoy, had withdrawn free use of the product after claiming that Andrew Tridgell had reverse-engineered the BitKeeper protocols.[14]

Linus Torvalds wanted a distributed system that he could use like BitKeeper, but none of the available free systems met his needs, especially for performance. Torvalds cited an example of a source-control management system needing 30 seconds to apply a patch and update all associated metadata, and noted that this would not scale to the needs of Linux kernel development, where syncing with fellow maintainers could require 250 such actions at once. For his design criteria, he specified that patching should take no more than three seconds,[8] and added three more points:

These criteria eliminated every then-extant version control system except Monotone. Performance considerations excluded it, too.[10] So immediately after the 2.6.12-rc2 Linux kernel development release, Torvalds set out to write his own system.[10]

Torvalds quipped about the name git (which means unpleasant person in British English slang): "I'm an egotistical bastard, and I name all my projects after myself. First 'Linux', now 'git'."[15][16] The man page describes Git as "the stupid content tracker".[17] The readme file of the source code elaborates further:[18]

The name "git" was given by Linus Torvalds when he wrote the very
first version. He described the tool as "the stupid content tracker"
and the name as (depending on your way):

 - random three-letter combination that is pronounceable, and not
   actually used by any common UNIX command.  The fact that it is a
   mispronunciation of "get" may or may not be relevant.
 - stupid. contemptible and despicable. simple. Take your pick from the
   dictionary of slang.
 - "global information tracker": you're in a good mood, and it actually
   works for you. Angels sing, and a light suddenly fills the room.
 - "g*dd*mn idiotic truckload of sh*t": when it breaks

The development of Git began on 3 April 2005.[19] Torvalds announced the project on 6 April;[20] it became self-hosting as of 7 April.[19] The first merge of multiple branches took place on 18 April.[21] Torvalds achieved his performance goals; on 29 April, the nascent Git was benchmarked recording patches to the Linux kernel tree at the rate of 6.7 per second.[22] On 16 June Git managed the kernel 2.6.12 release.[23]

Torvalds turned over maintenance on 26 July 2005 to Junio Hamano, a major contributor to the project.[24] Hamano was responsible for the 1.0 release on 21 December 2005, and remains the project's maintainer.[25]

Version Original release date Latest version Release date
Old version, no longer supported: 0.99 2005-07-11 0.99.9n 2005-12-15
Old version, no longer supported: 1.0 2005-12-21 1.0.13 2006-01-27
Old version, no longer supported: 1.1 2006-01-08 1.1.6 2006-01-30
Old version, no longer supported: 1.2 2006-02-12 1.2.6 2006-04-08
Old version, no longer supported: 1.3 2006-04-18 1.3.3 2006-05-16
Old version, no longer supported: 1.4 2006-06-10 1.4.4.5 2008-07-16
Old version, no longer supported: 1.5 2007-02-14 1.5.6.6 2008-12-17
Old version, no longer supported: 1.6 2008-08-17 1.6.6.3 2010-12-15
Old version, no longer supported: 1.7 2010-02-13 1.7.12.4 2012-10-17
Old version, no longer supported: 1.8 2012-10-21 1.8.5.6 2014-12-17
Old version, no longer supported: 1.9 2014-02-14 1.9.5 2014-12-17
Old version, no longer supported: 2.0 2014-05-28 2.0.5 2014-12-17
Old version, no longer supported: 2.1 2014-08-16 2.1.4 2014-12-17
Old version, no longer supported: 2.2 2014-11-26 2.2.3 2015-09-04
Old version, no longer supported: 2.3 2015-02-05 2.3.10 2015-09-29
Older version, yet still supported: 2.4 2015-04-30 2.4.11 2016-03-17
Older version, yet still supported: 2.5 2015-07-27 2.5.5 2016-03-17
Older version, yet still supported: 2.6 2015-09-28 2.6.6 2016-03-17
Older version, yet still supported: 2.7 2015-10-04 2.7.4 2016-03-17
Older version, yet still supported: 2.8 2016-03-28 2.8.4 2016-06-06
Older version, yet still supported: 2.9 2016-06-13 2.9.3 2016-08-12
Older version, yet still supported: 2.10 2016-09-02 2.10.2 2016-10-28
Current stable version: 2.11 2016-11-29 2.11.0 2016-11-29
Legend:
Old version
Older version, still supported
Latest version
Latest preview version
Future release

Design

Git's design was inspired by BitKeeper and Monotone.[26][27] Git was originally designed as a low-level version control system engine on top of which others could write front ends, such as Cogito or StGIT.[27] The core Git project has since become a complete version control system that is usable directly.[28] While strongly influenced by BitKeeper, Torvalds deliberately avoided conventional approaches, leading to a unique design.[29]

Characteristics

Git's design is a synthesis of Torvalds's experience with Linux in maintaining a large distributed development project, along with his intimate knowledge of file system performance gained from the same project and the urgent need to produce a working system in short order. These influences led to the following implementation choices:

Strong support for non-linear development
Git supports rapid branching and merging, and includes specific tools for visualizing and navigating a non-linear development history. In Git, a core assumption is that a change will be merged more often than it is written, as it is passed around to various reviewers. In Git, branches are very lightweight: a branch is only a reference to one commit. With its parental commits, the full branch structure can be constructed.
Distributed development
Like Darcs, BitKeeper, Mercurial, SVK, Bazaar, and Monotone, Git gives each developer a local copy of the full development history, and changes are copied from one such repository to another. These changes are imported as added development branches, and can be merged in the same way as a locally developed branch.
Compatibility with extant systems and protocols
Repositories can be published via Hypertext Transfer Protocol (HTTP), File Transfer Protocol (FTP), rsync (until Git 2.8.0[30]), or a Git protocol over either a plain socket, or Secure Shell (ssh). Git also has a CVS server emulation, which enables the use of extant CVS clients and IDE plugins to access Git repositories. Subversion and svk repositories can be used directly with git-svn.
Efficient handling of large projects
Torvalds has described Git as being very fast and scalable,[31] and performance tests done by Mozilla[32] showed it was an order of magnitude faster than some version control systems, and fetching version history from a locally stored repository can be one hundred times faster than fetching it from the remote server.[33]
Cryptographic authentication of history
The Git history is stored in such a way that the ID of a particular version (a commit in Git terms) depends upon the complete development history leading up to that commit. Once it is published, it is not possible to change the old versions without it being noticed. The structure is similar to a Merkle tree, but with added data at the nodes and leaves.[34] (Mercurial and Monotone also have this property.)
Toolkit-based design
Git was designed as a set of programs written in C, and several shell scripts that provide wrappers around those programs.[35] Although most of those scripts have since been rewritten in C for speed and portability, the design remains, and it is easy to chain the components together.[36]
Pluggable merge strategies
As part of its toolkit design, Git has a well-defined model of an incomplete merge, and it has multiple algorithms for completing it, culminating in telling the user that it is unable to complete the merge automatically and that manual editing is needed.
Garbage accumulates until collected
Aborting operations or backing out changes will leave useless dangling objects in the database. These are generally a small fraction of the continuously growing history of wanted objects. Git will automatically perform garbage collection when enough loose objects have been created in the repository. Garbage collection can be called explicitly using git gc --prune.[37]
Periodic explicit object packing
Git stores each newly created object as a separate file. Although individually compressed, this takes a great deal of space and is inefficient. This is solved by the use of packs that store a large number of objects in one file (or network byte stream) called packfile, delta-compressed among themselves. Packs are compressed using the heuristic that files with the same name are probably similar, but do not depend on it for correctness. A corresponding index file is created for each packfile, telling the offset of each object in the packfile. Newly created objects (newly added history) are still stored singly, and periodic repacking is needed to maintain space efficiency. The process of packing the repository can be very computationally costly. By allowing objects to exist in the repository in a loose, but quickly generated format, Git allows the costly pack operation to be deferred until later, when time matters less, e.g., the end of a work day. Git does periodic repacking automatically but manual repacking is also possible with the git gc command. For data integrity, both packfile and its index have SHA-1 checksum inside, and also the file name of packfile contains a SHA-1 checksum. To check integrity, run the git fsck command.

Another property of Git is that it snapshots directory trees of files. The earliest systems for tracking versions of source code, Source Code Control System (SCCS) and Revision Control System (RCS), worked on individual files and emphasized the space savings to be gained from interleaved deltas (SCCS) or delta encoding (RCS) the (mostly similar) versions. Later revision control systems maintained this notion of a file having an identity across multiple revisions of a project. However, Torvalds rejected this concept.[38] Consequently, Git does not explicitly record file revision relationships at any level below the source code tree.

Implicit revision relationships have some significant consequences:

Git implements several merging strategies; a non-default can be selected at merge time:[44]

Data structures

Git's primitives are not inherently a source code management (SCM) system. Torvalds explains,[46]

In many ways you can just see git as a filesystem  it's content-addressable, and it has a notion of versioning, but I really really designed it coming at the problem from the viewpoint of a filesystem person (hey, kernels is what I do), and I actually have absolutely zero interest in creating a traditional SCM system.

From this initial design approach, Git has developed the full set of features expected of a traditional SCM,[28] with features mostly being created as needed, then refined and extended over time.

Some data flows and storage levels in the Git revision control system.

Git has two data structures: a mutable index (also called stage or cache) that caches information about the working directory and the next revision to be committed; and an immutable, append-only object database.

The index serves as connection point between the object database and the working tree.

The object database contains four types of objects:

Each object is identified by a SHA-1 hash of its contents. Git computes the hash, and uses this value for the object's name. The object is put into a directory matching the first two characters of its hash. The rest of the hash is used as the file name for that object.

Git stores each revision of a file as a unique blob. The relationships between the blobs can be found through examining the tree and commit objects. Newly added objects are stored in their entirety using zlib compression. This can consume a large amount of disk space quickly, so objects can be combined into packs, which use delta compression to save space, storing blobs as their changes relative to other blobs.

Git servers typically listen on TCP port 9418.[47]

References

Every object in the Git database which is not referred to may be cleaned up by using a garbage collection command, or automatically. An object may be referenced by another object, or an explicit reference. Git knows different types of references. The commands to create, move, and delete references vary. "git show-ref" lists all references. Some types are:

Implementations

gitg is a graphical front-end using GTK+

Git is primarily developed on Linux, although it also supports most major operating systems including BSD, Solaris, macOS, and Windows.[49]

The first Microsoft Windows "port" of Git was primarily a Linux emulation framework that hosts the Linux version. Installing Git under Windows creates a similarly named Program Files directory containing the MinGW port of the GNU Compiler Collection, Perl 5, msys2.0, itself a fork of Cygwin, a Unix-like emulation environment for Windows, and various other Windows ports or emulations of Linux utilities and libraries. Currently native Windows builds of Git are distributed as 32 and 64-bit installers.[50]

The JGit implementation of Git is a pure Java software library, designed to be embedded in any Java application. JGit is used in the Gerrit code review tool and in EGit, a Git client for the Eclipse IDE.[51]

The Dulwich implementation of Git is a pure Python software component for Python 2.[52]

The libgit2 implementation of Git is an ANSI C software library with no other dependencies, which can be built on multiple platforms including Windows, Linux, macOS, and BSD.[53] It has bindings for many programming languages, including Ruby, Python, and Haskell.[54][55][56]

JS-Git is a JavaScript implementation of a subset of Git.[57]

Git server

As Git is a distributed version control system, it can be used as a server out of the box. Dedicated Git server software helps, amongst other features, to add access control, display the contents of a Git repository via the web, and help managing multiple repositories. Remote file store and shell access: A Git repository can be cloned to a shared file system, and accessed by other persons. It can also be accessed via remote shell just by having the Git software installed and allowing a user to log in.[58]

Adoption

The Eclipse Foundation reported in its annual community survey that as of May 2014, Git is now the most widely used source code management tool, with 42.9% of professional software developers reporting that they use Git as their primary source control system[59] compared with 36.3% in 2013, 32% in 2012; or for Git responses excluding use of GitHub: 33.3% in 2014, 30.3% in 2013, 27.6% in 2012 and 12.8% in 2011.[60] Open source directory Black Duck Open Hub reports a similar uptake among open source projects.[61] The Stack Overflow developer survey reported in 2015 that 69.3% of developers use Git; 36.9% use Subversion; 12.2% use TFS; and 7.9% use Mercurial.[62]

The UK IT jobs website itjobswatch.co.uk reports that as of late September 2016, 29.27% of UK permanent software development job openings have cited Git,[63] ahead of 12.17% for Microsoft Team Foundation Server,[64] 10.60% for Subversion,[65] 1.30% for Mercurial,[66] and 0.48% for Visual SourceSafe.[67]

Security

Git does not provide access control mechanisms, but was designed for operation with other tools that specialize in access control.[68]

On 17 December 2014, an exploit was found affecting the Windows and Mac versions of the Git client. An attacker could perform arbitrary code execution on a target computer with Git installed by creating a malicious Git tree (directory) named .git (a directory in Git repositories that stores all the data of the repository) in a different case (such as .GIT or .Git, needed because Git doesn't allow the all-lowercase version of .git to be created manually) with malicious files in the .git/hooks subdirectory (a folder with executable files that Git runs) on a repository that the attacker made or on a repository that the attacker can modify. If a Windows or Mac user pulls (downloads) a version of the repository with the malicious directory, then switches to that directory, the .git directory will be overwritten (due to the case-insensitive trait of the Windows and Mac filesystems) and the malicious executable files in .git/hooks may be run, which results in the attacker's commands being executed. An attacker could also modify the .git/config configuration file, which allows the attacker to create malicious Git aliases (aliases for Git commands or external commands) or modify extant aliases to execute malicious commands when run. The vulnerability was patched in version 2.2.1 of Git, released on 17 December 2014, and announced on the next day.[69][70]

Git version 2.6.1, released on 29 September 2015, contained a patch for a security vulnerability (CVE-2015-7545)[71] which allowed arbitrary code execution.[72] The vulnerability was exploitable if an attacker could convince a victim to clone a specific URL, as the arbitrary commands were embedded in the URL itself.[73] An attacker could use the exploit via a man-in-the-middle attack if the connection was unencrypted,[73] as they could redirect the user to a URL of their choice. Recursive clones were also vulnerable, since they allowed the controller of a repository to specify arbitrary URLs via the gitmodules file.[73]

Git uses SHA-1 hashes internally. Linus Torvalds has responded that the hash was mostly to guard against accidental corruption, and the security a cryptographically secure hash gives was just an accidental side effect, with the main security being signing elsewhere.[74][75]

See also

References

  1. "Initial revision of "git", the information manager from hell". Github. 8 April 2005. Retrieved 20 December 2015.
  2. "Commit Graph". Github. 8 June 2016. Retrieved 19 December 2015.
  3. "Git Source Code Mirror". Retrieved 2015-11-04.
  4. "Git's GPL license at github.com". github.com. 18 January 2010. Retrieved 12 October 2014.
  5. "Git's LGPL license at github.com". github.com. 20 May 2011. Retrieved 12 October 2014.
  6. "Tech Talk: Linus Torvalds on git (at 00:01:30)". YouTube. Retrieved 2014-07-20.
  7. Scopatz, Anthony; Huff, Kathryn D. (2015). Effective Computation in Physics. O'Reilly Media, Inc. p. 351. ISBN 9781491901595. Retrieved 20 April 2016.
  8. 1 2 Torvalds, Linus (2005-04-07). "Re: Kernel SCM saga..". linux-kernel (Mailing list). "So I'm writing some scripts to try to track things a whole lot faster."
  9. 1 2 Torvalds, Linus (2007-06-10). "Re: fatal: serious inflate inconsistency". git (Mailing list).
  10. 1 2 3 4 5 Linus Torvalds (2007-05-03). Google tech talk: Linus Torvalds on git. Event occurs at 02:30. Retrieved 2007-05-16.
  11. "A Short History of Git". Pro Git (2nd ed.). Apress. 2014. Retrieved 26 December 2015.
  12. Chacon, Scott (24 December 2014). Pro Git (2nd ed.). New York, NY: Apress. pp. 29–30. ISBN 978-1-4842-0077-3.
  13. BitKeeper and Linux: The end of the road? |linux.com
  14. McAllister, Neil (2005-05-02). "Linus Torvalds' BitKeeper blunder". InfoWorld. IDG. Retrieved 2015-09-08.
  15. "GitFaq: Why the 'Git' name?". Git.or.cz. Retrieved 2012-07-14.
  16. "After controversy, Torvalds begins work on 'git'". PC World. 2012-07-14. Torvalds seemed aware that his decision to drop BitKeeper would also be controversial. When asked why he called the new software, "git", British slang meaning "a rotten person", he said. "I'm an egotistical bastard, so I name all my projects after myself. First Linux, now git"
  17. "git(1) Manual Page". Retrieved 2012-07-21.
  18. "Initial revision of "git", the information manager from hell · git/git@e83c516". GitHub. Retrieved 2016-01-21.
  19. 1 2 Torvalds, Linus (2007-02-27). "Re: Trivia: When did git self-host?". git (Mailing list).
  20. Torvalds, Linus (2005-04-06). "Kernel SCM saga..". linux-kernel (Mailing list).
  21. Torvalds, Linus (2005-04-17). "First ever real kernel git merge!". git (Mailing list).
  22. Mackall, Matt (2005-04-29). "Mercurial 0.4b vs git patchbomb benchmark". git (Mailing list).
  23. Torvalds, Linus (2005-06-17). "Linux 2.6.12". git-commits-head (Mailing list).
  24. Torvalds, Linus (2005-07-27). "Meet the new maintainer...". git (Mailing list).
  25. Hamano, Junio C. (2005-12-21). "Announce: Git 1.0.0". git (Mailing list).
  26. Torvalds, Linus (2006-05-05). "Re: [ANNOUNCE] Git wiki". linux-kernel (Mailing list). "Some historical background" on Git's predecessors
  27. 1 2 Torvalds, Linus (2005-04-08). "Re: Kernel SCM saga". linux-kernel (Mailing list). Retrieved 2008-02-20.
  28. 1 2 Torvalds, Linus (2006-03-23). "Re: Errors GITtifying GCC and Binutils". git (Mailing list).
  29. Torvalds, Linus (2006-10-20). "Re: VCS comparison table". git (Mailing list). A discussion of Git vs. BitKeeper
  30. Git 2.8.0 Release Notes "Documentation/RelNotes/2.8.0.txt". 2016-03-29.
  31. Torvalds, Linus (2006-10-19). "Re: VCS comparison table". git (Mailing list).
  32. Jst's Blog on Mozillazine "bzr/hg/git performance". Archived from the original on 29 May 2010. Retrieved 12 February 2015.
  33. Dreier, Roland (2006-11-13). "Oh what a relief it is"., observing that "git log" is 100x faster than "svn log" because the latter must contact a remote server.
  34. "Trust". Git Concepts. Git User's Manual. 2006-10-18.
  35. Torvalds, Linus. "Re: VCS comparison table". git (Mailing list). Retrieved 2009-04-10., describing Git's script-oriented design
  36. iabervon (2005-12-22). "Git rocks!"., praising Git's scriptability
  37. "Git User's Manual". 2007-08-05.
  38. Torvalds, Linus (2005-04-10). "Re: more git updates..". linux-kernel (Mailing list).
  39. Haible, Bruno (2007-02-11). "how to speed up "git log"?". git (Mailing list).
  40. Torvalds, Linus (2006-03-01). "Re: impure renames / history tracking". git (Mailing list).
  41. Hamano, Junio C. (2006-03-24). "Re: Errors GITtifying GCC and Binutils". git (Mailing list).
  42. Hamano, Junio C. (2006-03-23). "Re: Errors GITtifying GCC and Binutils". git (Mailing list).
  43. Torvalds, Linus (2006-11-28). "Re: git and bzr". git (Mailing list)., on using git-blame to show code moved between source files
  44. Torvalds, Linus (2007-07-18). "git-merge(1)".
  45. Torvalds, Linus (2007-07-18). "CrissCrossMerge".
  46. Torvalds, Linus (2005-04-10). "Re: more git updates...". linux-kernel (Mailing list).
  47. "1.4 Getting Started – Installing Git". git-scm.com. Retrieved 2013-11-01.
  48. Gerrit Code Review – Project Configuration File Format
  49. "downloads". Retrieved 14 May 2012.
  50. "msysGit". Retrieved 20 Sep 2016.
  51. "JGit". Retrieved 24 Aug 2012.
  52. "Dulwich". Retrieved 27 Aug 2012.
  53. "libgit2". Retrieved 24 Aug 2012.
  54. "rugged". Retrieved 24 Aug 2012.
  55. "pygit2". Retrieved 24 Aug 2012.
  56. "hlibgit2". Retrieved 30 Apr 2013.
  57. https://github.com/creationix/js-git "js-git: a JavaScript implementation of Git." Retrieved 13 August 2013.
  58. 4.4 Git on the Server – Setting Up the Server, Pro Git.
  59. "Eclipse Community Survey 2014 results | Ian Skerrett". Ianskerrett.wordpress.com. 2014-06-23. Retrieved 2014-06-23.
  60. "Results of Eclipse Community Survey 2012".
  61. "Compare Repositories – Open Hub".
  62. "Stack Overflow Developer Survey 2015". Stack Overflow. Retrieved 1 October 2016.
  63. "Git (software) Jobs, Average Salary for Git Distributed Version Control System Skills". Itjobswatch.co.uk. Retrieved 2016-09-30.
  64. "Team Foundation Server Jobs, Average Salary for Microsoft Team Foundation Server (TFS) Skills". Itjobswatch.co.uk. Retrieved 2016-09-30.
  65. "Subversion Jobs, Average Salary for Apache Subversion (SVN) Skills". Itjobswatch.co.uk. Retrieved 2016-09-30.
  66. "Mercurial Jobs, Average Salary for Mercurial Skills". Itjobswatch.co.uk. Retrieved 2016-09-30.
  67. "VSS/SourceSafe Jobs, Average Salary for Microsoft Visual SourceSafe (VSS) Skills". Itjobswatch.co.uk. Retrieved 2016-09-30.
  68. https://wincent.com/wiki/git_repository_access_control
  69. Pettersen, Tim (20 December 2014). "Securing your Git server against CVE-2014-9390". Retrieved 22 December 2014.
  70. Hamano, J. C. (18 December 2014). "[Announce] Git v2.2.1 (and updates to older maintenance tracks)". Newsgroup: gmane.linux.kernel. Retrieved 22 December 2014.
  71. "CVE-2015-7545". 15 December 2015. Retrieved 26 December 2015.
  72. "Git 2.6.1". 29 September 2015. Retrieved 26 December 2015.
  73. 1 2 3 Blake Burkhart; et al. (5 October 2015). "Re: CVE Request: git". Retrieved 26 December 2015.
  74. "hash - How safe are signed git tags? Only as safe as SHA-1 or somehow safer?". Information Security Stack Exchange. September 22, 2014.
  75. "Why does Git use a cryptographic hash function?". Stack Overflow. March 1, 2015.
Wikimedia Commons has media related to Git.
Wikibooks has a book on the topic of: Git
This article is issued from Wikipedia - version of the 12/2/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.