table of contents
- NAME
- SYNOPSIS
- DESCRIPTION
- OPTIONS
- FURTHER DOCUMENTATION
- GIT COMMANDS
- HIGH-LEVEL COMMANDS (PORCELAIN)
- LOW-LEVEL COMMANDS (PLUMBING)
- CONFIGURATION MECHANISM
- IDENTIFIER TERMINOLOGY
- SYMBOLIC IDENTIFIERS
- FILE/DIRECTORY STRUCTURE
- TERMINOLOGY
- ENVIRONMENT VARIABLES
- DISCUSSION
- AUTHORS
- DOCUMENTATION
- SEE ALSO
- GIT
- NOTES
GIT(1) | Git Manual | GIT(1) |
NAME¶
git - the stupid content tracker
SYNOPSIS¶
git [--version] [--exec-path[=GIT_EXEC_PATH]] [--html-path]
[-p|--paginate|--no-pager] [--no-replace-objects]
[--bare] [--git-dir=GIT_DIR] [--work-tree=GIT_WORK_TREE]
[--help] COMMAND [ARGS]
DESCRIPTION¶
Git is a fast, scalable, distributed revision control system with an unusually rich command set that provides both high-level operations and full access to internals.
See gittutorial(7) to get started, then see Everyday Git[1] for a useful minimum set of commands, and "man git-commandname" for documentation of each command. CVS users may also want to read gitcvs-migration(7). See the Git User’s Manual[2] for a more in-depth introduction.
The COMMAND is either a name of a Git command (see below) or an alias as defined in the configuration file (see git-config(1)).
Formatted and hyperlinked version of the latest git documentation can be viewed at http://www.kernel.org/pub/software/scm/git/docs/.
OPTIONS¶
--version
--help
Other options are available to control how the manual page is displayed. See git-help(1) for more information, because git --help ... is converted internally into git help ....
--exec-path
--html-path
-p, --paginate
--no-pager
--git-dir=<path>
--work-tree=<path>
--bare
--no-replace-objects
FURTHER DOCUMENTATION¶
See the references above to get started using git. The following is probably more detail than necessary for a first-time user.
The git concepts chapter of the user-manual[3] and gitcore-tutorial(7) both provide introductions to the underlying git architecture.
See gitworkflows(7) for an overview of recommended workflows.
See also the howto[4] documents for some useful examples.
The internals are documented in the GIT API documentation[5].
GIT COMMANDS¶
We divide git into high level ("porcelain") commands and low level ("plumbing") commands.
HIGH-LEVEL COMMANDS (PORCELAIN)¶
We separate the porcelain commands into the main commands and some ancillary user utilities.
Main porcelain commands¶
Ancillary Commands¶
Manipulators:
Interrogators:
Interacting with Others¶
These commands are to interact with foreign SCM and with other people via patch over e-mail.
git-archimport(1)
LOW-LEVEL COMMANDS (PLUMBING)¶
Although git includes its own porcelain layer, its low-level commands are sufficient to support development of alternative porcelains. Developers of such porcelains might start by reading about git-update-index(1) and git-read-tree(1).
The interface (input, output, set of options and the semantics) to these low-level commands are meant to be a lot more stable than Porcelain level commands, because these commands are primarily for scripted use. The interface to Porcelain commands on the other hand are subject to change in order to improve the end user experience.
The following description divides the low-level commands into commands that manipulate objects (in the repository, index, and working tree), commands that interrogate and compare objects, and commands that move objects and references between repositories.
Manipulation commands¶
Interrogation commands¶
In general, the interrogate commands do not touch the files in the working tree.
Synching repositories¶
The following are helper commands used by the above; end users typically do not use them directly.
Internal helper commands¶
These are internal helper commands used by other commands; end users typically do not use them directly.
CONFIGURATION MECHANISM¶
Starting from 0.99.9 (actually mid 0.99.8.GIT), .git/config file is used to hold per-repository configuration options. It is a simple text file modeled after .ini format familiar to some people. Here is an example:
# # A ´#´ or ´;´ character indicates a comment. # ; core variables [core]
; Don´t trust file modes
filemode = false ; user identity [user]
name = "Junio C Hamano"
email = "junkio@twinsun.com"
Various commands read from the configuration file and adjust their operation accordingly. See git-config(1) for a list.
IDENTIFIER TERMINOLOGY¶
<object>
<blob>
<tree>
<commit>
<tree-ish>
<commit-ish>
<type>
<file>
SYMBOLIC IDENTIFIERS¶
Any git command accepting any <object> can also use the following symbolic notation:
HEAD
<tag>
<head>
For a more complete list of ways to spell object names, see "SPECIFYING REVISIONS" section in git-rev-parse(1).
FILE/DIRECTORY STRUCTURE¶
Please see the gitrepository-layout(5) document.
Read githooks(5) for more details about each hook.
Higher level SCMs may provide and manage additional information in the $GIT_DIR.
TERMINOLOGY¶
Please see gitglossary(7).
ENVIRONMENT VARIABLES¶
Various git commands use the following environment variables:
The git Repository¶
These environment variables apply to all core git commands. Nb: it is worth noting that they may be used/overridden by SCMS sitting above git so take care if using Cogito etc.
GIT_INDEX_FILE
GIT_OBJECT_DIRECTORY
GIT_ALTERNATE_OBJECT_DIRECTORIES
GIT_DIR
GIT_WORK_TREE
GIT_CEILING_DIRECTORIES
git Commits¶
GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, GIT_AUTHOR_DATE, GIT_COMMITTER_NAME, GIT_COMMITTER_EMAIL, GIT_COMMITTER_DATE, EMAIL
git Diffs¶
GIT_DIFF_OPTS
GIT_EXTERNAL_DIFF
path old-file old-hex old-mode new-file new-hex new-mode
where:
<old|new>-file
<old|new>-hex
<old|new>-mode
+ The file parameters can point at the user’s working file (e.g. new-file in "git-diff-files"), /dev/null (e.g. old-file when a new file is added), or a temporary file (e.g. old-file in the index). GIT_EXTERNAL_DIFF should not worry about unlinking the temporary file --- it is removed when GIT_EXTERNAL_DIFF exits.
+ For a path that is unmerged, GIT_EXTERNAL_DIFF is called with 1 parameter, <path>.
other¶
GIT_MERGE_VERBOSITY
GIT_PAGER
GIT_SSH
To pass options to the program that you want to list in GIT_SSH you will need to wrap the program and options into a shell script, then set GIT_SSH to refer to the shell script.
Usually it is easier to configure any desired options through your personal .ssh/config file. Please consult your ssh documentation for further details.
GIT_FLUSH
GIT_TRACE
DISCUSSION¶
More detail on the following is available from the git concepts chapter of the user-manual[3] and gitcore-tutorial(7).
A git project normally consists of a working directory with a ".git" subdirectory at the top level. The .git directory contains, among other things, a compressed object database representing the complete history of the project, an "index" file which links that history to the current contents of the working tree, and named pointers into that history such as tags and branch heads.
The object database contains objects of three main types: blobs, which hold file data; trees, which point to blobs and other trees to build up directory hierarchies; and commits, which each reference a single tree and some number of parent commits.
The commit, equivalent to what other systems call a "changeset" or "version", represents a step in the project’s history, and each parent represents an immediately preceding step. Commits with more than one parent represent merges of independent lines of development.
All objects are named by the SHA1 hash of their contents, normally written as a string of 40 hex digits. Such names are globally unique. The entire history leading up to a commit can be vouched for by signing just that commit. A fourth object type, the tag, is provided for this purpose.
When first created, objects are stored in individual files, but for efficiency may later be compressed together into "pack files".
Named pointers called refs mark interesting points in history. A ref may contain the SHA1 name of an object or the name of another ref. Refs with names beginning ref/head/ contain the SHA1 name of the most recent commit (or "head") of a branch under development. SHA1 names of tags of interest are stored under ref/tags/. A special ref named HEAD contains the name of the currently checked-out branch.
The index file is initialized with a list of all paths and, for each path, a blob object and a set of attributes. The blob object represents the contents of the file as of the head of the current branch. The attributes (last modified time, size, etc.) are taken from the corresponding file in the working tree. Subsequent changes to the working tree can be found by comparing these attributes. The index may be updated with new content, and new commits may be created from the content stored in the index.
The index is also capable of storing multiple entries (called "stages") for a given pathname. These stages are used to hold the various unmerged version of a file when a merge is in progress.
AUTHORS¶
DOCUMENTATION¶
The documentation for git suite was started by David Greaves <david@dgreaves.com[10]>, and later enhanced greatly by the contributors on the git-list <git@vger.kernel.org[9]>.
SEE ALSO¶
gittutorial(7), gittutorial-2(7), Everyday Git[1], gitcvs-migration(7), gitglossary(7), gitcore-tutorial(7), gitcli(7), The Git User’s Manual[2], gitworkflows(7)
GIT¶
Part of the git(1) suite
NOTES¶
- 1.
- Everyday Git
- 2.
- Git User’s Manual
- 3.
- git concepts chapter of the user-manual
- 4.
- howto
- 5.
- GIT API documentation
- 6.
- torvalds@osdl.org
- 7.
- gitster@pobox.com
- 8.
- ae@op5.se
- 9.
- git@vger.kernel.org
- 10.
- david@dgreaves.com
02/03/2020 | Git 1.7.1 |