1Git - fast, scalable, distributed revision control system 2========================================================= 3 4Git is a fast, scalable, distributed revision control system with an 5unusually rich command set that provides both high-level operations 6and full access to internals. 7 8Git is an Open Source project covered by the GNU General Public 9License version 2 (some parts of it are under different licenses, 10compatible with the GPLv2). It was originally written by Linus 11Torvalds with help of a group of hackers around the net. 12 13Please read the file [INSTALL][] for installation instructions. 14 15Many Git online resources are accessible from <https://git-scm.com/> 16including full documentation and Git related tools. 17 18See [Documentation/gittutorial.txt][] to get started, then see 19[Documentation/giteveryday.txt][] for a useful minimum set of commands, and 20Documentation/git-<commandname>.txt for documentation of each command. 21If git has been correctly installed, then the tutorial can also be 22read with `man gittutorial` or `git help tutorial`, and the 23documentation of each command with `man git-<commandname>` or `git help 24<commandname>`. 25 26CVS users may also want to read [Documentation/gitcvs-migration.txt][] 27(`man gitcvs-migration` or `git help cvs-migration` if git is 28installed). 29 30The user discussion and development of Git take place on the Git 31mailing list -- everyone is welcome to post bug reports, feature 32requests, comments and patches to git@vger.kernel.org (read 33[Documentation/SubmittingPatches][] for instructions on patch submission). 34To subscribe to the list, send an email with just "subscribe git" in 35the body to majordomo@vger.kernel.org. The mailing list archives are 36available at <https://public-inbox.org/git/>, 37<http://marc.info/?l=git> and other archival sites. 38 39Issues which are security relevant should be disclosed privately to 40the Git Security mailing list <git-security@googlegroups.com>. 41 42The maintainer frequently sends the "What's cooking" reports that 43list the current status of various development topics to the mailing 44list. The discussion following them give a good reference for 45project status, development direction and remaining tasks. 46 47The name "git" was given by Linus Torvalds when he wrote the very 48first version. He described the tool as "the stupid content tracker" 49and the name as (depending on your mood): 50 51- random three-letter combination that is pronounceable, and not 52 actually used by any common UNIX command. The fact that it is a 53 mispronunciation of "get" may or may not be relevant. 54- stupid. contemptible and despicable. simple. Take your pick from the 55 dictionary of slang. 56- "global information tracker": you're in a good mood, and it actually 57 works for you. Angels sing, and a light suddenly fills the room. 58- "goddamn idiotic truckload of sh*t": when it breaks 59 60[INSTALL]: INSTALL 61[Documentation/gittutorial.txt]: Documentation/gittutorial.txt 62[Documentation/giteveryday.txt]: Documentation/giteveryday.txt 63[Documentation/gitcvs-migration.txt]: Documentation/gitcvs-migration.txt 64[Documentation/SubmittingPatches]: Documentation/SubmittingPatches