|
|
|
|
Git (software)
|
| |
|
| |
Git is a free distributed revision control, or software source code management project with an emphasis on being fast. Git was initially created by Linus Torvalds for Linux kernel development.
Every Git working directory is a full-fledged repository with complete history and full revision tracking capabilities, not dependent on network access or a central server.
Several high-profile software projects now use Git for revision control, most notably the Linux kernel, Perl, Samba, X.org Server, Qt (toolkit), One Laptop per Child (OLPC) core development, VLC, Wine, SWI Prolog, GStreamer, and the Android mobile platform.
Git's current software maintenance is overseen by Junio Hamano.
lass="link1" onMouseover='showByLink("m4067616",this)' onMouseout='hide("m4067616")'href="http://www.absoluteastronomy.com/topics/Linus_Torvalds">Linus Torvalds has quipped about the name “git”, which is British English slang for a stupid or unpleasant person: This self-deprecating humor is tongue-in-cheek, as Torvalds was actually pressured into naming Linux after himself (see History of Linux).
The official Git wiki also gives a number of alternative explanations for the name, including "Global Information Tracker".
Characteristics Git's design was inspired by BitKeeper and Monotone.

Discussion
Ask a question about 'Git (software)'
Start a new discussion about 'Git (software)'
Answer questions from other users
|
Encyclopedia
Git is a free distributed revision control, or software source code management project with an emphasis on being fast. Git was initially created by Linus Torvalds for Linux kernel development.
Every Git working directory is a full-fledged repository with complete history and full revision tracking capabilities, not dependent on network access or a central server.
Several high-profile software projects now use Git for revision control, most notably the Linux kernel, Perl, Samba, X.org Server, Qt (toolkit), One Laptop per Child (OLPC) core development, VLC, Wine, SWI Prolog, GStreamer, and the Android mobile platform.
Git's current software maintenance is overseen by Junio Hamano.
Name
Linus Torvalds has quipped about the name “git”, which is British English slang for a stupid or unpleasant person: This self-deprecating humor is tongue-in-cheek, as Torvalds was actually pressured into naming Linux after himself (see History of Linux).
The official Git wiki also gives a number of alternative explanations for the name, including "Global Information Tracker".
Characteristics Git's design was inspired by BitKeeper and Monotone. Git was originally designed only as a low-level engine that others could use to write front ends such as Cogito or StGIT. However, the core Git project has since become a complete revision control system that is usable directly.
Git's design is a synthesis of Torvalds's experience maintaining a large distributed development project, his intimate knowledge of file system performance, and an urgent need to produce a working system in short order. (See the history section for details.) 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. A core assumption in Git is that a change will be merged more often than it is written, as it is passed around various reviewers.
- Distributed development. Like Darcs, BitKeeper, Mercurial, SVK, Bazaar and Monotone, Git gives each developer a local copy of the entire development history, and changes are copied from one such repository to another. These changes are imported as additional development branches, and can be merged in the same way as a locally developed branch.
- Repositories can be published via HTTP, FTP, rsync, or a Git protocol over either a plain socket or ssh. Git also has a CVS server emulation, which enables the use of existing 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, and performance tests done by Mozilla showed it was an order of magnitude faster than other revision control systems, and two orders of magnitude faster on some operations.
- Cryptographic authentication of history. The Git history is stored in such a way that the name of a particular revision (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. (Mercurial and Monotone also have this property.)
- Toolkit design. Git was designed as a set of programs written in C, and a number of shell scripts that provide wrappers around those programs. Although most of those scripts have been rewritten in C as part of an ongoing effort to port it to Microsoft Windows, the design remains, and it is easy to chain the components together to do other clever things.
- 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 manual editing is required.
- Garbage accumulates unless 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, but reclaiming the space using
git-gc --prune can be slow.
One property of Git is that it snapshots directory trees of files. The earliest systems for tracking versions of source code, SCCS and RCS, worked on individual files and emphasized the space savings to be gained from delta encoding the (mostly similar) versions. Later revision control systems maintained this notion of a file having an identity across multiple revisions of a project.
Torvalds rejected this concept; consequently, Git does not explicitly record file revision relationships at any level below the source code tree. This has some significant consequences:
- It is slightly more expensive to examine the change history of a single file than the whole project. To obtain a history of changes affecting a given file, Git must walk the global history and then determine whether each change modified that file. This method of examining history does, however, let Git produce with equal efficiency a single history showing the changes to an arbitrary set of files. For example, a subdirectory of the source tree plus an associated global header file is a very common case.
- Renames are handled implicitly rather than explicitly. A common complaint with CVS is that it uses the name of a file to identify its revision history, so moving or renaming a file is not possible without either interrupting its history, or renaming the history and thereby making the history inaccurate. Most post-CVS revision control systems solve this by giving a file a unique long-lived name (a sort of inode number) that survives renaming. Git does not record such an identifier, and this is claimed as an advantage. Source code files are sometimes split or merged as well as simply renamed, and recording this as a simple rename would freeze an inaccurate description of what happened in the (immutable) history. Git addresses the issue by detecting renames while browsing the history of snapshots rather than recording it when making the snapshot. (Briefly, given a file in revision N, a file of the same name in revision N-1 is its default ancestor. However, when there is no like-named file in revision N-1, Git searches for a file that existed only in revision N-1 and is very similar to the new file.) However, it does require more CPU-intensive work every time history is reviewed, and a number of options to adjust the heuristics.
Additionally, people are sometimes upset by the storage model:
- 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 a single file (or network byte stream), 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. Newly created objects (newly added history) are still stored singly, and periodic repacking is required to maintain space efficiency. Git does periodic repacking automatically but manual repacking is also possible with the git gc command.
Git implements several merging strategies; a non-default can be selected at merge time:
resolve: the traditional 3-way merge algorithm.
recursive: This is the default when pulling or merging one branch, and is a variant of the 3-way merge algorithm. "When there are more than one common ancestors that can be used for 3-way merge, it creates a merged tree of the common ancestors and uses that as the reference tree for the 3-way merge. This has been reported to result in fewer merge conflicts without causing mis-merges by tests done on actual merge commits taken from Linux 2.6 kernel development history. Additionally this can detect and handle merges involving renames."
octopus: This is the default when merging more than two heads.
Early history
Git development began after many Linux kernel developers were forced to give up access to the proprietary BitKeeper system (see BitKeeper - Pricing change). The ability to use BitKeeper free of charge had been withdrawn by the copyright holder Larry McVoy after he claimed Andrew Tridgell had reverse engineered the BitKeeper protocols in violation of the BitKeeper license. At Linux.Conf.Au 2005, Tridgell demonstrated during his keynote that the reverse engineering process he had used was simply to telnet to the appropriate port of a BitKeeper server and type "help".
Torvalds wanted a distributed system that he could use like BitKeeper, but none of the available free systems met his needs, particularly his performance needs. From an e-mail he wrote on April 7 2005 while writing the first prototype:
Torvalds had several design criteria:
- Take CVS as an example of what not to do; if in doubt, make the exact opposite decision. To quote Torvalds, speaking somewhat tongue-in-cheek:
- “For the first 10 years of kernel maintenance, we literally used tarballs and patches, which is a much superior source control management system than CVS is, but I did end up using CVS for 7 years at a commercial company [ Transmeta] and I hate it with a passion. When I say I hate CVS with a passion, I have to also say that if there are any SVN (Subversion) users in the audience, you might want to leave. Because my hatred of CVS has meant that I see Subversion as being the most pointless project ever started. The slogan of Subversion for a while was ‘CVS done right’, or something like that, and if you start with that kind of slogan, there's nowhere you can go. There is no way to do CVS right.”
- Support a distributed, BitKeeper-like workflow
- “BitKeeper was not only the first source control system that I ever felt was worth using at all, it was also the source control system that taught me why there's a point to them, and how you actually can do things. So Git in many ways, even though from a technical angle it is very very different from BitKeeper (which was another design goal, because I wanted to make it clear that it wasn't a BitKeeper clone), a lot of the flows we use with Git come directly from the flows we learned from BitKeeper.”
- Very strong safeguards against corruption, either accidental or malicious
- Very high performance
The first three criteria eliminated every pre-existing version control system except for Monotone, and the fourth excluded everything.
So, immediately after the 2.6.12-rc2 Linux kernel development release, he set out to write his own.
The development of Git began on April 3 2005. The project was announced on April 6, and became self-hosting as of April 7. The first merge of multiple branches was done on April 18. Torvalds achieved his performance goals; on April 29, the nascent Git was benchmarked recording patches to the Linux kernel tree at the rate of 6.7 per second. On June 16, the kernel 2.6.12 release was managed by Git.
While strongly influenced by BitKeeper, Torvalds deliberately attempted to avoid conventional approaches, leading to a unique design. He developed the system until it was usable by technical users, then turned over maintenance on July 26 2005 to Junio Hamano, a major contributor to the project. Hamano was responsible for the 1.0 release on December 21 2005, and remains the maintainer .
Implementation
Like BitKeeper, Git does not use a centralized server. However, Git's primitives are not inherently a SCM system. Torvalds explains,
Git has two data structures, a mutable index that caches information about the working directory and the next revision to be committed, and an immutable, append-only object database containing four types of objects:
- A blob object is the content of a file. Blob objects have no names, timestamps, or other metadata.
- A tree object is the equivalent of a directory: it contains a list of filenames, each with some type bits and the name of a blob or tree object that is that file, symbolic link, or directory's contents. This object describes a snapshot of the source tree.
- A commit object links tree objects together into a history. It contains the name of a tree object (of the top-level source directory), a timestamp, a log message, and the names of zero or more parent commit objects.
- A tag object is a container that contains reference to another object and can hold additional meta-data related to another object. Most commonly it is used to store a digital signature of a commit object corresponding to a particular release of the data being tracked by Git.
The object database can hold any kind of object. An intermediate layer, the index, serves as connection point between the object database and the working tree.
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 object. 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 hard 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.
Portability
Git is primarily developed on Linux, but can be used on other Unix-like operating systems including BSD, Solaris and Darwin. Git is extremely fast on POSIX-based systems such as Linux.
Git also runs on Windows. There are two variants:
- A native Microsoft Windows port, called (using MSYS from MinGW), is approaching completion. There are downloadable installers ready for testing (under the names "Git" and "msysgit", where "Git" is aimed for users). While somewhat slower than the Linux version, it is acceptably fast and is reported to be usable in production, with only minor awkwardness. In particular, some commands are not yet available from the GUIs, and must be invoked from the command line.
- Git also runs on top of Cygwin (a POSIX emulation layer), although it is noticeably slower, especially for commands written as shell scripts. This is primarily due to the high cost of the fork emulation performed by Cygwin. However, the recent rewriting of many Git commands implemented as shell scripts in C has resulted in significant speed improvements on Windows. Regardless, many people find a Cygwin installation too large and invasive for typical Windows use.
Other alternatives for running Git include:
- git-cvsserver (which emulates a CVS server, allowing use of Windows CVS clients):
- Eclipse IDE-based Git client, based on a pure Java implementation of Git's internals:
- NetBeans IDE support for Git is under development.
- A Windows Explorer extension (a TortoiseCVS/TortoiseSVN-lookalike) was started at and which is an explorer extension as well as a standalone GUI and a Visual Studio 2008 Plug-in
"Libifying" the lowest-level Git operations would in theory enable re-implementation of the higher-level components for Windows without rewriting the rest.
Criticisms
Older versions of Git, usually older than v1.5.0, have been criticized for their usability, documentation, and design. More recent comparisons indicate less criticism.
Until recently, Git's Windows support was poor enough to make projects that support both POSIX and Windows look elsewhere. Examples of projects that publicly ruled out any use of Git, in the year 2006, include Mozilla and Ruby.
Other projects using GIT
Ruby on Rails web framework, YUI, Merb, DragonFly BSD, and GPM_(software)
See also
External links
-
-
- , also distributed with Git in Documentation/user-manual.txt
- - the project page at kernel.org
-
- , article by LWN.net
- and at wiki
- - A summary of the best Git features in comparison to other Software configuration management systems.
- from GitWiki
- from www.youtube.com
- from www.youtube.com
- , article by Sam Vilain
- explains how Git conceptually works
- is similar to "Git for computer scientists", but more thorough. For some high-level commands, it explains how low-level commands can be used to achieve the same effect.
- [irc://irc.freenode.net/git #git] on freenode
- - simple walk through of common git commands
- - a comprehensive listing of Git tips & tricks, popularly referred to as "magic". Describes some of the lesser known features of Git.
- : The community-built comprehensive online book
- - a wrapper script for Git, presenting a simplified user interface, designed to be more accessible to users of other revision control systems.
- - not just a branch name. Shows git-status info at bash prompt.
|
| |
|
|