]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git.txt
[PATCH] Subject: [PATCH] Add some documentation.
[thirdparty/git.git] / Documentation / git.txt
CommitLineData
7984eabe 1git(7)
2cf565c5 2======
3f971fc4 3v0.99.4, Aug 2005
2cf565c5
DG
4
5NAME
6----
7git - the stupid content tracker
8
9
10SYNOPSIS
11--------
12'git-<command>' <args>
13
14DESCRIPTION
15-----------
16
17This is reference information for the core git commands.
18
0d6a873c
JH
19Before reading this cover to cover, you may want to take a look
20at the link:tutorial.html[tutorial] document.
21
6c84e2e0
DG
22The Discussion section below contains much useful definition and
23clarification info - read that first. And of the commands, I suggest
24reading link:git-update-cache.html[git-update-cache] and
25link:git-read-tree.html[git-read-tree] first - I wish I had!
2cf565c5 26
e6fc2346
JH
27After you get the general feel from the tutorial and this
28overview page, you may want to take a look at the
29link:howto-index.html[howto] documents.
30
31
2cf565c5
DG
32David Greaves <david@dgreaves.com>
3308/05/05
34
35Updated by Junio C Hamano <junkio@cox.net> on 2005-05-05 to
36reflect recent changes.
37
38Commands Overview
39-----------------
40The git commands can helpfully be split into those that manipulate
2f2de9b4
JH
41the repository, the cache and the working fileset, those that
42interrogate and compare them, and those that moves objects and
43references between repositories.
2cf565c5 44
62033318
JH
45In addition, git itself comes with a spartan set of porcelain
46commands. They are usable but are not meant to compete with real
47Porcelains.
48
90933efb 49There are also some ancillary programs that can be viewed as useful
204ee6a9
DG
50aids for using the core commands but which are unlikely to be used by
51SCMs layered over git.
52
2cf565c5
DG
53Manipulation commands
54~~~~~~~~~~~~~~~~~~~~~
2cf565c5
DG
55link:git-checkout-cache.html[git-checkout-cache]::
56 Copy files from the cache to the working directory
57
58link:git-commit-tree.html[git-commit-tree]::
59 Creates a new commit object
60
2cf565c5
DG
61link:git-init-db.html[git-init-db]::
62 Creates an empty git object database
63
2cf565c5
DG
64link:git-merge-base.html[git-merge-base]::
65 Finds as good a common ancestor as possible for a merge
66
2cf565c5
DG
67link:git-mktag.html[git-mktag]::
68 Creates a tag object
69
2cf565c5
DG
70link:git-read-tree.html[git-read-tree]::
71 Reads tree information into the directory cache
72
2cf565c5
DG
73link:git-update-cache.html[git-update-cache]::
74 Modifies the index or directory cache
75
7672db20
BL
76link:git-hash-object.html[git-hash-object]::
77 Computes the object ID from a file.
2cf565c5
DG
78
79link:git-write-tree.html[git-write-tree]::
80 Creates a tree from the current cache
81
e31bb3bb
JH
82link:git-pack-objects.html[git-pack-objects]::
83 Creates a packed archive of objects.
84
83db04ff
JH
85link:git-unpack-objects.html[git-unpack-objects]::
86 Unpacks objects out of a packed archive.
87
e31bb3bb
JH
88link:git-prune-packed.html[git-prune-packed]::
89 Remove extra objects that are already in pack files.
90
83db04ff
JH
91link:git-apply.html[git-apply]::
92 Reads a "diff -up1" or git generated patch file and
93 applies it to the working tree.
94
e31bb3bb 95
2cf565c5
DG
96Interrogation commands
97~~~~~~~~~~~~~~~~~~~~~~
98link:git-cat-file.html[git-cat-file]::
99 Provide content or type information for repository objects
100
2cf565c5
DG
101link:git-diff-cache.html[git-diff-cache]::
102 Compares content and mode of blobs between the cache and repository
103
104link:git-diff-files.html[git-diff-files]::
105 Compares files in the working tree and the cache
106
107link:git-diff-tree.html[git-diff-tree]::
108 Compares the content and mode of blobs found via two tree objects
109
83db04ff
JH
110link:git-diff-stages.html[git-diff-stages]::
111 Compares two "merge stages" in the index file.
112
2cf565c5
DG
113link:git-export.html[git-export]::
114 Exports each commit and a diff against each of its parents
115
116link:git-fsck-cache.html[git-fsck-cache]::
117 Verifies the connectivity and validity of the objects in the database
118
119link:git-ls-files.html[git-ls-files]::
120 Information about files in the cache/working directory
121
122link:git-ls-tree.html[git-ls-tree]::
123 Displays a tree object in human readable form
124
125link:git-merge-cache.html[git-merge-cache]::
126 Runs a merge for files needing merging
127
128link:git-rev-list.html[git-rev-list]::
129 Lists commit objects in reverse chronological order
130
131link:git-rev-tree.html[git-rev-tree]::
132 Provides the revision tree for one or more commits
133
2cf565c5
DG
134link:git-tar-tree.html[git-tar-tree]::
135 Creates a tar archive of the files in the named tree
136
137link:git-unpack-file.html[git-unpack-file]::
138 Creates a temporary file with a blob's contents
139
aed022ab
EB
140link:git-var.html[git-var]::
141 Displays a git logical variable
142
83db04ff
JH
143link:git-show-index.html[git-show-index]::
144 Displays contents of a pack idx file.
145
f9253394
JH
146link:git-verify-pack.html[git-verify-pack]::
147 Validates packed GIT archive files
148
2cf565c5
DG
149The interrogate commands may create files - and you can force them to
150touch the working file set - but in general they don't
151
152
0c04094b
JH
153Synching repositories
154~~~~~~~~~~~~~~~~~~~~~
155
6ec311da
JH
156link:git-clone-script.html[git-clone-script]::
157 Clones a repository into the current repository (user interface)
158
159link:git-clone-pack.html[git-clone-pack]::
160 Clones a repository into the current repository (engine
161 for ssh and local transport)
162
204ee6a9
DG
163link:git-http-pull.html[git-http-pull]::
164 Downloads a remote GIT repository via HTTP
165
166link:git-local-pull.html[git-local-pull]::
167 Duplicates another GIT repository on a local system
168
2f2de9b4
JH
169link:git-ssh-pull.html[git-ssh-pull]::
170 Pulls from a remote repository over ssh connection
171
172link:git-send-pack.html[git-send-pack]::
173 Pushes to a remote repository, intelligently.
174
175link:git-receive-pack.html[git-receive-pack]::
176 Invoked by 'git-send-pack' to receive what is pushed to it.
177
178link:git-clone-pack.html[git-clone-pack]::
179 Clones from a remote repository.
180
181link:git-fetch-pack.html[git-fetch-pack]::
182 Updates from a remote repository.
183
508e67ab
JH
184link:git-peek-remote.html[git-peek-remote]::
185 Lists references on a remote repository using upload-pack protocol.
186
2f2de9b4
JH
187link:git-upload-pack.html[git-upload-pack]::
188 Invoked by 'git-clone-pack' and 'git-fetch-pack' to push
189 what are asked for.
190
61e3ef36
JH
191link:git-update-server-info.html[git-update-server-info]::
192 Updates auxiliary information on a dumb server to help
193 clients discover references and packs on it.
194
2f2de9b4 195
3f971fc4
JH
196Porcelain-ish Commands
197----------------------
198link:git-whatchanged.html[git-whatchanged]::
199 Shows commit logs and differences they introduce.
200
201link:git-log-script.html[git-log-script]::
202 Shows commit logs.
203
204link:git-shortlog.html[git-shortlog]::
205 Summarizes 'git log' output.
206
207link:git-status-script.html[git-status-script]::
208 Shows the working tree status.
209
62033318
JH
210link:git-fetch-script.html[git-fetch-script]::
211 Download from a remote repository via various protocols.
212
213link:git-pull-script.html[git-pull-script]::
214 Fetch from and merge with a remote repository.
215
ab9b3138
JH
216link:git-resolve-script.html[git-resolve-script]::
217 Merge two commits.
218
219link:git-octopus-script.html[git-octopus-script]::
220 Merge more than two commits.
221
222link:git-push-script.html[git-push-script]::
223 Update remote refs along with associated objects.
224
225link:git-commit-script.html[git-commit-script]::
62033318
JH
226 Record changes to the repository.
227
f5e375c9 228link:git-show-branch.html[git-show-branch]::
7c27558c 229 Show branches and their commits.
62033318 230
e31bb3bb
JH
231link:git-repack-script.html[git-repack-script]::
232 Pack unpacked objects in a repository.
233
83db04ff
JH
234link:git-rename-script.html[git-rename]::
235 Rename files and directories.
236
237link:git-ls-remote-script.html[git-ls-remote-script]::
238 Shows references in a remote or local repository.
239
e31bb3bb 240
90933efb
YS
241Ancillary Commands
242------------------
2f2de9b4
JH
243Manipulators:
244
245link:git-apply-patch-script.html[git-apply-patch-script]::
246 Sample script to apply the diffs from git-diff-*
247
248link:git-convert-cache.html[git-convert-cache]::
249 Converts old-style GIT repository
250
204ee6a9
DG
251link:git-merge-one-file-script.html[git-merge-one-file-script]::
252 The standard helper program to use with "git-merge-cache"
253
204ee6a9
DG
254link:git-prune-script.html[git-prune-script]::
255 Prunes all unreachable objects from the object database
256
204ee6a9
DG
257link:git-tag-script.html[git-tag-script]::
258 An example script to create a tag object signed with GPG
259
83db04ff
JH
260link:git-cvsimport-script.html[git-cvsimport-script]::
261 Salvage your data out of another SCM people love to hate.
262
204ee6a9 263
90933efb 264Interrogators:
204ee6a9 265
99665af5 266link:git-diff-helper.html[git-diff-helper]::
204ee6a9
DG
267 Generates patch format output for git-diff-*
268
418aaf84
JH
269link:git-ssh-push.html[git-ssh-push]::
270 Helper "server-side" program used by git-ssh-pull
204ee6a9 271
83db04ff
JH
272link:git-send-email-script.html[git-send-email]::
273 Send patch e-mails out of "format-patch --mbox" output.
204ee6a9
DG
274
275
7fc9d69f
JH
276Commands not yet documented
277---------------------------
278
279link:git-applymbox.html[git-applymbox]::
280 git-applymbox.
281
282link:git-applypatch.html[git-applypatch]::
283 git-applypatch.
284
285link:git-mailinfo.html[git-mailinfo]::
286 git-mailinfo.
287
288link:git-mailsplit.html[git-mailsplit]::
289 git-mailsplit.
290
291link:git-add-script.html[git-add-script]::
292 git-add-script.
293
294link:git-bisect-script.html[git-bisect-script]::
295 git-bisect-script.
296
297link:git-branch-script.html[git-branch-script]::
298 git-branch-script.
299
300link:git-build-rev-cache.html[git-build-rev-cache]::
301 git-build-rev-cache.
302
303link:git-checkout-script.html[git-checkout-script]::
304 git-checkout-script.
305
306link:git-cherry.html[git-cherry]::
307 git-cherry.
308
309link:git-clone-dumb-http.html[git-clone-dumb-http]::
310 git-clone-dumb-http.
311
312link:git-count-objects-script.html[git-count-objects-script]::
313 git-count-objects-script.
314
315link:git-daemon.html[git-daemon]::
316 git-daemon.
317
318link:git-diff-script.html[git-diff-script]::
319 git-diff-script.
320
321link:git-format-patch-script.html[git-format-patch-script]::
322 git-format-patch-script.
323
324link:git-get-tar-commit-id.html[git-get-tar-commit-id]::
325 git-get-tar-commit-id.
326
327link:git-patch-id.html[git-patch-id]::
328 git-patch-id.
329
7fc9d69f
JH
330link:git-rebase-script.html[git-rebase-script]::
331 git-rebase-script.
332
333link:git-relink-script.html[git-relink-script]::
334 git-relink-script.
335
336link:git-request-pull-script.html[git-request-pull-script]::
337 git-request-pull-script.
338
339link:git-reset-script.html[git-reset-script]::
340 git-reset-script.
341
342link:git-rev-parse.html[git-rev-parse]::
343 git-rev-parse.
344
345link:git-revert-script.html[git-revert-script]::
346 git-revert-script.
347
348link:git-sh-setup-script.html[git-sh-setup-script]::
349 git-sh-setup-script.
350
351link:git-show-rev-cache.html[git-show-rev-cache]::
352 git-show-rev-cache.
353
354link:git-stripspace.html[git-stripspace]::
355 git-stripspace.
356
357link:git-verify-tag-script.html[git-verify-tag-script]::
358 git-verify-tag-script.
359
360link:gitk.html[gitk]::
361 gitk.
362
363
6c84e2e0 364Identifier Terminology
2cf565c5
DG
365----------------------
366<object>::
6c84e2e0 367 Indicates the sha1 identifier for any type of object
2cf565c5
DG
368
369<blob>::
370 Indicates a blob object sha1 identifier
371
372<tree>::
373 Indicates a tree object sha1 identifier
374
375<commit>::
376 Indicates a commit object sha1 identifier
377
378<tree-ish>::
6c84e2e0
DG
379 Indicates a tree, commit or tag object sha1 identifier. A
380 command that takes a <tree-ish> argument ultimately wants to
381 operate on a <tree> object but automatically dereferences
382 <commit> and <tag> objects that point at a <tree>.
2cf565c5
DG
383
384<type>::
385 Indicates that an object type is required.
386 Currently one of: blob/tree/commit/tag
387
388<file>::
389 Indicates a filename - always relative to the root of
390 the tree structure GIT_INDEX_FILE describes.
391
c1bdacf9
DG
392Symbolic Identifiers
393--------------------
90933efb 394Any git command accepting any <object> can also use the following
6c84e2e0 395symbolic notation:
c1bdacf9
DG
396
397HEAD::
6c84e2e0
DG
398 indicates the head of the repository (ie the contents of
399 `$GIT_DIR/HEAD`)
c1bdacf9
DG
400<tag>::
401 a valid tag 'name'+
402 (ie the contents of `$GIT_DIR/refs/tags/<tag>`)
403<head>::
404 a valid head 'name'+
405 (ie the contents of `$GIT_DIR/refs/heads/<head>`)
406<snap>::
407 a valid snapshot 'name'+
408 (ie the contents of `$GIT_DIR/refs/snap/<snap>`)
409
410
411File/Directory Structure
412------------------------
413The git-core manipulates the following areas in the directory:
414
415 .git/ The base (overridden with $GIT_DIR)
416 objects/ The object base (overridden with $GIT_OBJECT_DIRECTORY)
2f2de9b4
JH
417 ??/ 'First 2 chars of object' directories.
418 pack/ Packed archives.
c1bdacf9
DG
419
420 refs/ Directories containing symbolic names for objects
421 (each file contains the hex SHA1 + newline)
422 heads/ Commits which are heads of various sorts
423 tags/ Tags, by the tag name (or some local renaming of it)
2f2de9b4
JH
424 */ Any other subdirectory of refs/ can be used to store
425 files similar to what are under refs/heads/.
426 HEAD Symlink to refs/heads/<current-branch-name>
c1bdacf9
DG
427
428Higher level SCMs may provide and manage additional information in the
429GIT_DIR.
430
2cf565c5
DG
431Terminology
432-----------
1bff6490 433Please see link:glossary.html[glossary] document.
2cf565c5
DG
434
435
436Environment Variables
437---------------------
438Various git commands use the following environment variables:
439
c1bdacf9
DG
440The git Repository
441~~~~~~~~~~~~~~~~~~
442These environment variables apply to 'all' core git commands. Nb: it
443is worth noting that they may be used/overridden by SCMS sitting above
444git so take care if using Cogito etc
445
446'GIT_INDEX_FILE'::
447 This environment allows the specification of an alternate
448 cache/index file. If not specified, the default of
449 `$GIT_DIR/index` is used.
450
451'GIT_OBJECT_DIRECTORY'::
452 If the object storage directory is specified via this
453 environment variable then the sha1 directories are created
454 underneath - otherwise the default `$GIT_DIR/objects`
455 directory is used.
456
457'GIT_ALTERNATE_OBJECT_DIRECTORIES'::
458 Due to the immutable nature of git objects, old objects can be
459 archived into shared, read-only directories. This variable
90933efb 460 specifies a ":" separated list of git object directories which
c1bdacf9
DG
461 can be used to search for git objects. New objects will not be
462 written to these directories.
463
464'GIT_DIR'::
465 If the 'GIT_DIR' environment variable is set then it specifies
466 a path to use instead of `./.git` for the base of the
467 repository.
468
469git Commits
470~~~~~~~~~~~
471'GIT_AUTHOR_NAME'::
472'GIT_AUTHOR_EMAIL'::
473'GIT_AUTHOR_DATE'::
474'GIT_COMMITTER_NAME'::
475'GIT_COMMITTER_EMAIL'::
476 see link:git-commit-tree.html[git-commit-tree]
477
478git Diffs
479~~~~~~~~~
d81ed1b5
JH
480'GIT_DIFF_OPTS'::
481'GIT_EXTERNAL_DIFF'::
c1bdacf9
DG
482 see the "generating patches" section in :
483 link:git-diff-cache.html[git-diff-cache];
484 link:git-diff-files.html[git-diff-files];
485 link:git-diff-tree.html[git-diff-tree]
2cf565c5 486
6c84e2e0
DG
487Discussion
488----------
489include::../README[]
490
2cf565c5
DG
491Author
492------
6c84e2e0 493Written by Linus Torvalds <torvalds@osdl.org> and the git-list <git@vger.kernel.org>.
2cf565c5
DG
494
495Documentation
496--------------
497Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
498
499GIT
500---
501Part of the link:git.html[git] suite
502