Code

introduce GIT_WORK_TREE to specify the work tree
[git.git] / Documentation / git.txt
1 git(7)
2 ======
4 NAME
5 ----
6 git - the stupid content tracker
9 SYNOPSIS
10 --------
11 [verse]
12 'git' [--version] [--exec-path[=GIT_EXEC_PATH]] [-p|--paginate]
13     [--bare] [--git-dir=GIT_DIR] [--work-tree=GIT_WORK_TREE]
14     [--help] COMMAND [ARGS]
16 DESCRIPTION
17 -----------
18 Git is a fast, scalable, distributed revision control system with an
19 unusually rich command set that provides both high-level operations
20 and full access to internals.
22 See this link:tutorial.html[tutorial] to get started, then see
23 link:everyday.html[Everyday Git] for a useful minimum set of commands, and
24 "man git-commandname" for documentation of each command.  CVS users may
25 also want to read link:cvs-migration.html[CVS migration].  See
26 link:user-manual.html[Git User's Manual] for a more in-depth
27 introduction.
29 The COMMAND is either a name of a Git command (see below) or an alias
30 as defined in the configuration file (see gitlink:git-config[1]).
32 Formatted and hyperlinked version of the latest git
33 documentation can be viewed at
34 `http://www.kernel.org/pub/software/scm/git/docs/`.
36 ifdef::stalenotes[]
37 [NOTE]
38 ============
40 You are reading the documentation for the latest (possibly
41 unreleased) version of git, that is available from 'master'
42 branch of the `git.git` repository.
43 Documentation for older releases are available here:
45 * link:v1.5.2/git.html[documentation for release 1.5.2]
47 * release notes for
48   link:RelNotes-1.5.2.txt[1.5.2].
50 * link:v1.5.1.6/git.html[documentation for release 1.5.1.6]
52 * release notes for
53   link:RelNotes-1.5.1.6.txt[1.5.1.6],
54   link:RelNotes-1.5.1.5.txt[1.5.1.5],
55   link:RelNotes-1.5.1.4.txt[1.5.1.4],
56   link:RelNotes-1.5.1.3.txt[1.5.1.3],
57   link:RelNotes-1.5.1.2.txt[1.5.1.2],
58   link:RelNotes-1.5.1.1.txt[1.5.1.1],
59   link:RelNotes-1.5.1.txt[1.5.1].
61 * link:v1.5.0.7/git.html[documentation for release 1.5.0.7]
63 * release notes for
64   link:RelNotes-1.5.0.7.txt[1.5.0.7],
65   link:RelNotes-1.5.0.6.txt[1.5.0.6],
66   link:RelNotes-1.5.0.5.txt[1.5.0.5],
67   link:RelNotes-1.5.0.3.txt[1.5.0.3],
68   link:RelNotes-1.5.0.2.txt[1.5.0.2],
69   link:RelNotes-1.5.0.1.txt[1.5.0.1],
70   link:RelNotes-1.5.0.txt[1.5.0].
72 * documentation for release link:v1.4.4.4/git.html[1.4.4.4],
73   link:v1.3.3/git.html[1.3.3],
74   link:v1.2.6/git.html[1.2.6],
75   link:v1.0.13/git.html[1.0.13].
77 ============
79 endif::stalenotes[]
81 OPTIONS
82 -------
83 --version::
84         Prints the git suite version that the 'git' program came from.
86 --help::
87         Prints the synopsis and a list of the most commonly used
88         commands.  If a git command is named this option will bring up
89         the man-page for that command. If the option '--all' or '-a' is
90         given then all available commands are printed.
92 --exec-path::
93         Path to wherever your core git programs are installed.
94         This can also be controlled by setting the GIT_EXEC_PATH
95         environment variable. If no path is given 'git' will print
96         the current setting and then exit.
98 -p|--paginate::
99         Pipe all output into 'less' (or if set, $PAGER).
101 --git-dir=<path>::
102         Set the path to the repository. This can also be controlled by
103         setting the GIT_DIR environment variable.
105 --work-tree=<path>::
106         Set the path to the working tree.  The value will not be
107         used in combination with repositories found automatically in
108         a .git directory (i.e. $GIT_DIR is not set).
109         This can also be controlled by setting the GIT_WORK_TREE
110         environment variable and the core.worktree configuration
111         variable.
113 --bare::
114         Same as --git-dir=`pwd`.
116 FURTHER DOCUMENTATION
117 ---------------------
119 See the references above to get started using git.  The following is
120 probably more detail than necessary for a first-time user.
122 The <<Discussion,Discussion>> section below and the
123 link:core-tutorial.html[Core tutorial] both provide introductions to the
124 underlying git architecture.
126 See also the link:howto-index.html[howto] documents for some useful
127 examples.
129 GIT COMMANDS
130 ------------
132 We divide git into high level ("porcelain") commands and low level
133 ("plumbing") commands.
135 High-level commands (porcelain)
136 -------------------------------
138 We separate the porcelain commands into the main commands and some
139 ancillary user utilities.
141 Main porcelain commands
142 ~~~~~~~~~~~~~~~~~~~~~~~
144 include::cmds-mainporcelain.txt[]
146 Ancillary Commands
147 ~~~~~~~~~~~~~~~~~~
148 Manipulators:
150 include::cmds-ancillarymanipulators.txt[]
152 Interrogators:
154 include::cmds-ancillaryinterrogators.txt[]
157 Interacting with Others
158 ~~~~~~~~~~~~~~~~~~~~~~~
160 These commands are to interact with foreign SCM and with other
161 people via patch over e-mail.
163 include::cmds-foreignscminterface.txt[]
166 Low-level commands (plumbing)
167 -----------------------------
169 Although git includes its
170 own porcelain layer, its low-level commands are sufficient to support
171 development of alternative porcelains.  Developers of such porcelains
172 might start by reading about gitlink:git-update-index[1] and
173 gitlink:git-read-tree[1].
175 The interface (input, output, set of options and the semantics)
176 to these low-level commands are meant to be a lot more stable
177 than Porcelain level commands, because these commands are
178 primarily for scripted use.  The interface to Porcelain commands
179 on the other hand are subject to change in order to improve the
180 end user experience.
182 The following description divides
183 the low-level commands into commands that manipulate objects (in
184 the repository, index, and working tree), commands that interrogate and
185 compare objects, and commands that move objects and references between
186 repositories.
189 Manipulation commands
190 ~~~~~~~~~~~~~~~~~~~~~
192 include::cmds-plumbingmanipulators.txt[]
195 Interrogation commands
196 ~~~~~~~~~~~~~~~~~~~~~~
198 include::cmds-plumbinginterrogators.txt[]
200 In general, the interrogate commands do not touch the files in
201 the working tree.
204 Synching repositories
205 ~~~~~~~~~~~~~~~~~~~~~
207 include::cmds-synchingrepositories.txt[]
209 The following are helper programs used by the above; end users
210 typically do not use them directly.
212 include::cmds-synchelpers.txt[]
215 Internal helper commands
216 ~~~~~~~~~~~~~~~~~~~~~~~~
218 These are internal helper commands used by other commands; end
219 users typically do not use them directly.
221 include::cmds-purehelpers.txt[]
224 Configuration Mechanism
225 -----------------------
227 Starting from 0.99.9 (actually mid 0.99.8.GIT), `.git/config` file
228 is used to hold per-repository configuration options.  It is a
229 simple text file modeled after `.ini` format familiar to some
230 people.  Here is an example:
232 ------------
234 # A '#' or ';' character indicates a comment.
237 ; core variables
238 [core]
239         ; Don't trust file modes
240         filemode = false
242 ; user identity
243 [user]
244         name = "Junio C Hamano"
245         email = "junkio@twinsun.com"
247 ------------
249 Various commands read from the configuration file and adjust
250 their operation accordingly.
253 Identifier Terminology
254 ----------------------
255 <object>::
256         Indicates the object name for any type of object.
258 <blob>::
259         Indicates a blob object name.
261 <tree>::
262         Indicates a tree object name.
264 <commit>::
265         Indicates a commit object name.
267 <tree-ish>::
268         Indicates a tree, commit or tag object name.  A
269         command that takes a <tree-ish> argument ultimately wants to
270         operate on a <tree> object but automatically dereferences
271         <commit> and <tag> objects that point at a <tree>.
273 <commit-ish>::
274         Indicates a commit or tag object name.  A
275         command that takes a <commit-ish> argument ultimately wants to
276         operate on a <commit> object but automatically dereferences
277         <tag> objects that point at a <commit>.
279 <type>::
280         Indicates that an object type is required.
281         Currently one of: `blob`, `tree`, `commit`, or `tag`.
283 <file>::
284         Indicates a filename - almost always relative to the
285         root of the tree structure `GIT_INDEX_FILE` describes.
287 Symbolic Identifiers
288 --------------------
289 Any git command accepting any <object> can also use the following
290 symbolic notation:
292 HEAD::
293         indicates the head of the current branch (i.e. the
294         contents of `$GIT_DIR/HEAD`).
296 <tag>::
297         a valid tag 'name'
298         (i.e. the contents of `$GIT_DIR/refs/tags/<tag>`).
300 <head>::
301         a valid head 'name'
302         (i.e. the contents of `$GIT_DIR/refs/heads/<head>`).
304 For a more complete list of ways to spell object names, see
305 "SPECIFYING REVISIONS" section in gitlink:git-rev-parse[1].
308 File/Directory Structure
309 ------------------------
311 Please see link:repository-layout.html[repository layout] document.
313 Read link:hooks.html[hooks] for more details about each hook.
315 Higher level SCMs may provide and manage additional information in the
316 `$GIT_DIR`.
319 Terminology
320 -----------
321 Please see link:glossary.html[glossary] document.
324 Environment Variables
325 ---------------------
326 Various git commands use the following environment variables:
328 The git Repository
329 ~~~~~~~~~~~~~~~~~~
330 These environment variables apply to 'all' core git commands. Nb: it
331 is worth noting that they may be used/overridden by SCMS sitting above
332 git so take care if using Cogito etc.
334 'GIT_INDEX_FILE'::
335         This environment allows the specification of an alternate
336         index file. If not specified, the default of `$GIT_DIR/index`
337         is used.
339 'GIT_OBJECT_DIRECTORY'::
340         If the object storage directory is specified via this
341         environment variable then the sha1 directories are created
342         underneath - otherwise the default `$GIT_DIR/objects`
343         directory is used.
345 'GIT_ALTERNATE_OBJECT_DIRECTORIES'::
346         Due to the immutable nature of git objects, old objects can be
347         archived into shared, read-only directories. This variable
348         specifies a ":" separated list of git object directories which
349         can be used to search for git objects. New objects will not be
350         written to these directories.
352 'GIT_DIR'::
353         If the 'GIT_DIR' environment variable is set then it
354         specifies a path to use instead of the default `.git`
355         for the base of the repository.
357 'GIT_WORK_TREE'::
358         Set the path to the working tree.  The value will not be
359         used in combination with repositories found automatically in
360         a .git directory (i.e. $GIT_DIR is not set).
361         This can also be controlled by the '--work-tree' command line
362         option and the core.worktree configuration variable.
364 git Commits
365 ~~~~~~~~~~~
366 'GIT_AUTHOR_NAME'::
367 'GIT_AUTHOR_EMAIL'::
368 'GIT_AUTHOR_DATE'::
369 'GIT_COMMITTER_NAME'::
370 'GIT_COMMITTER_EMAIL'::
371 'GIT_COMMITTER_DATE'::
372 'EMAIL'::
373         see gitlink:git-commit-tree[1]
375 git Diffs
376 ~~~~~~~~~
377 'GIT_DIFF_OPTS'::
378         Only valid setting is "--unified=??" or "-u??" to set the
379         number of context lines shown when a unified diff is created.
380         This takes precedence over any "-U" or "--unified" option
381         value passed on the git diff command line.
383 'GIT_EXTERNAL_DIFF'::
384         When the environment variable 'GIT_EXTERNAL_DIFF' is set, the
385         program named by it is called, instead of the diff invocation
386         described above.  For a path that is added, removed, or modified,
387         'GIT_EXTERNAL_DIFF' is called with 7 parameters:
389         path old-file old-hex old-mode new-file new-hex new-mode
391 where:
393         <old|new>-file:: are files GIT_EXTERNAL_DIFF can use to read the
394                          contents of <old|new>,
395         <old|new>-hex:: are the 40-hexdigit SHA1 hashes,
396         <old|new>-mode:: are the octal representation of the file modes.
399 The file parameters can point at the user's working file
400 (e.g. `new-file` in "git-diff-files"), `/dev/null` (e.g. `old-file`
401 when a new file is added), or a temporary file (e.g. `old-file` in the
402 index).  'GIT_EXTERNAL_DIFF' should not worry about unlinking the
403 temporary file --- it is removed when 'GIT_EXTERNAL_DIFF' exits.
405 For a path that is unmerged, 'GIT_EXTERNAL_DIFF' is called with 1
406 parameter, <path>.
408 other
409 ~~~~~
410 'GIT_PAGER'::
411         This environment variable overrides `$PAGER`.
413 'GIT_TRACE'::
414         If this variable is set to "1", "2" or "true" (comparison
415         is case insensitive), git will print `trace:` messages on
416         stderr telling about alias expansion, built-in command
417         execution and external command execution.
418         If this variable is set to an integer value greater than 1
419         and lower than 10 (strictly) then git will interpret this
420         value as an open file descriptor and will try to write the
421         trace messages into this file descriptor.
422         Alternatively, if this variable is set to an absolute path
423         (starting with a '/' character), git will interpret this
424         as a file path and will try to write the trace messages
425         into it.
427 Discussion[[Discussion]]
428 ------------------------
429 include::core-intro.txt[]
431 Authors
432 -------
433 * git's founding father is Linus Torvalds <torvalds@osdl.org>.
434 * The current git nurse is Junio C Hamano <junkio@cox.net>.
435 * The git potty was written by Andres Ericsson <ae@op5.se>.
436 * General upbringing is handled by the git-list <git@vger.kernel.org>.
438 Documentation
439 --------------
440 The documentation for git suite was started by David Greaves
441 <david@dgreaves.com>, and later enhanced greatly by the
442 contributors on the git-list <git@vger.kernel.org>.
444 GIT
445 ---
446 Part of the gitlink:git[7] suite