Autogenerated manpages for v2.41.0-470-gbfce02
[git-manpages.git] / man7 / gitglossary.7
blob30e8f9be4e4dc0dd9dd25b7ffabf7d609b1b58c4
1 '\" t
2 .\"     Title: gitglossary
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 2023-07-27
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.41.0.470.gbfce02c22f
8 .\"  Language: English
9 .\"
10 .TH "GITGLOSSARY" "7" "2023\-07\-27" "Git 2\&.41\&.0\&.470\&.gbfce02" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 gitglossary \- A Git Glossary
32 .SH "SYNOPSIS"
33 .sp
35 .SH "DESCRIPTION"
36 .PP
37 alternate object database
38 .RS 4
39 Via the alternates mechanism, a
40 repository
41 can inherit part of its
42 object database
43 from another object database, which is called an "alternate"\&.
44 .RE
45 .PP
46 bare repository
47 .RS 4
48 A bare repository is normally an appropriately named
49 directory
50 with a
51 \fB\&.git\fR
52 suffix that does not have a locally checked\-out copy of any of the files under revision control\&. That is, all of the Git administrative and control files that would normally be present in the hidden
53 \fB\&.git\fR
54 sub\-directory are directly present in the
55 \fBrepository\&.git\fR
56 directory instead, and no other files are present and checked out\&. Usually publishers of public repositories make bare repositories available\&.
57 .RE
58 .PP
59 blob object
60 .RS 4
61 Untyped
62 object, e\&.g\&. the contents of a file\&.
63 .RE
64 .PP
65 branch
66 .RS 4
67 A "branch" is a line of development\&. The most recent
68 commit
69 on a branch is referred to as the tip of that branch\&. The tip of the branch is
70 referenced
71 by a branch
72 head, which moves forward as additional development is done on the branch\&. A single Git
73 repository
74 can track an arbitrary number of branches, but your
75 working tree
76 is associated with just one of them (the "current" or "checked out" branch), and
77 HEAD
78 points to that branch\&.
79 .RE
80 .PP
81 cache
82 .RS 4
83 Obsolete for:
84 index\&.
85 .RE
86 .PP
87 chain
88 .RS 4
89 A list of objects, where each
90 object
91 in the list contains a reference to its successor (for example, the successor of a
92 commit
93 could be one of its
94 parents)\&.
95 .RE
96 .PP
97 changeset
98 .RS 4
99 BitKeeper/cvsps speak for "commit"\&. Since Git does not store changes, but states, it really does not make sense to use the term "changesets" with Git\&.
102 checkout
103 .RS 4
104 The action of updating all or part of the
105 working tree
106 with a
107 tree object
109 blob
110 from the
111 object database, and updating the
112 index
114 HEAD
115 if the whole working tree has been pointed at a new
116 branch\&.
119 cherry\-picking
120 .RS 4
123 jargon, "cherry pick" means to choose a subset of changes out of a series of changes (typically commits) and record them as a new series of changes on top of a different codebase\&. In Git, this is performed by the "git cherry\-pick" command to extract the change introduced by an existing
124 commit
125 and to record it based on the tip of the current
126 branch
127 as a new commit\&.
130 clean
131 .RS 4
133 working tree
134 is clean, if it corresponds to the
135 revision
136 referenced by the current
137 head\&. Also see "dirty"\&.
140 commit
141 .RS 4
142 As a noun: A single point in the Git history; the entire history of a project is represented as a set of interrelated commits\&. The word "commit" is often used by Git in the same places other revision control systems use the words "revision" or "version"\&. Also used as a short hand for
143 commit object\&.
145 As a verb: The action of storing a new snapshot of the project\(cqs state in the Git history, by creating a new commit representing the current state of the
146 index
147 and advancing
148 HEAD
149 to point at the new commit\&.
152 commit graph concept, representations and usage
153 .RS 4
154 A synonym for the
156 structure formed by the commits in the object database,
157 referenced
158 by branch tips, using their
159 chain
160 of linked commits\&. This structure is the definitive commit graph\&. The graph can be represented in other ways, e\&.g\&. the
161 "commit\-graph" file\&.
164 commit\-graph file
165 .RS 4
166 The "commit\-graph" (normally hyphenated) file is a supplemental representation of the
167 commit graph
168 which accelerates commit graph walks\&. The "commit\-graph" file is stored either in the \&.git/objects/info directory or in the info directory of an alternate object database\&.
171 commit object
172 .RS 4
174 object
175 which contains the information about a particular
176 revision, such as
177 parents, committer, author, date and the
178 tree object
179 which corresponds to the top
180 directory
181 of the stored revision\&.
184 commit\-ish (also committish)
185 .RS 4
187 commit object
188 or an
189 object
190 that can be recursively dereferenced to a commit object\&. The following are all commit\-ishes: a commit object, a
191 tag object
192 that points to a commit object, a tag object that points to a tag object that points to a commit object, etc\&.
195 core Git
196 .RS 4
197 Fundamental data structures and utilities of Git\&. Exposes only limited source code management tools\&.
201 .RS 4
202 Directed acyclic graph\&. The
203 commit objects
204 form a directed acyclic graph, because they have parents (directed), and the graph of commit objects is acyclic (there is no
205 chain
206 which begins and ends with the same
207 object)\&.
210 dangling object
211 .RS 4
213 unreachable object
214 which is not
215 reachable
216 even from other unreachable objects; a dangling object has no references to it from any reference or
217 object
218 in the
219 repository\&.
222 detached HEAD
223 .RS 4
224 Normally the
225 HEAD
226 stores the name of a
227 branch, and commands that operate on the history HEAD represents operate on the history leading to the tip of the branch the HEAD points at\&. However, Git also allows you to
228 check out
229 an arbitrary
230 commit
231 that isn\(cqt necessarily the tip of any particular branch\&. The HEAD in such a state is called "detached"\&.
233 Note that commands that operate on the history of the current branch (e\&.g\&.
234 \fBgit commit\fR
235 to build a new history on top of it) still work while the HEAD is detached\&. They update the HEAD to point at the tip of the updated history without affecting any branch\&. Commands that update or inquire information
236 \fIabout\fR
237 the current branch (e\&.g\&.
238 \fBgit branch \-\-set\-upstream\-to\fR
239 that sets what remote\-tracking branch the current branch integrates with) obviously do not work, as there is no (real) current branch to ask about in this state\&.
242 directory
243 .RS 4
244 The list you get with "ls" :\-)
247 dirty
248 .RS 4
250 working tree
251 is said to be "dirty" if it contains modifications which have not been
252 committed
253 to the current
254 branch\&.
257 evil merge
258 .RS 4
259 An evil merge is a
260 merge
261 that introduces changes that do not appear in any
262 parent\&.
265 fast\-forward
266 .RS 4
267 A fast\-forward is a special type of
268 merge
269 where you have a
270 revision
271 and you are "merging" another
272 branch\*(Aqs changes that happen to be a descendant of what you have\&. In such a case, you do not make a new
273 merge
274 commit
275 but instead just update your branch to point at the same revision as the branch you are merging\&. This will happen frequently on a
276 remote\-tracking branch
277 of a remote
278 repository\&.
281 fetch
282 .RS 4
283 Fetching a
284 branch
285 means to get the branch\(cqs
286 head ref
287 from a remote
288 repository, to find out which objects are missing from the local
289 object database, and to get them, too\&. See also
290 \fBgit-fetch\fR(1)\&.
293 file system
294 .RS 4
295 Linus Torvalds originally designed Git to be a user space file system, i\&.e\&. the infrastructure to hold files and directories\&. That ensured the efficiency and speed of Git\&.
298 Git archive
299 .RS 4
300 Synonym for
301 repository
302 (for arch people)\&.
305 gitfile
306 .RS 4
307 A plain file
308 \fB\&.git\fR
309 at the root of a working tree that points at the directory that is the real repository\&.
312 grafts
313 .RS 4
314 Grafts enables two otherwise different lines of development to be joined together by recording fake ancestry information for commits\&. This way you can make Git pretend the set of
315 parents
317 commit
318 has is different from what was recorded when the commit was created\&. Configured via the
319 \fB\&.git/info/grafts\fR
320 file\&.
322 Note that the grafts mechanism is outdated and can lead to problems transferring objects between repositories; see
323 \fBgit-replace\fR(1)
324 for a more flexible and robust system to do the same thing\&.
327 hash
328 .RS 4
329 In Git\(cqs context, synonym for
330 object name\&.
333 head
334 .RS 4
336 named reference
337 to the
338 commit
339 at the tip of a
340 branch\&. Heads are stored in a file in
341 \fB$GIT_DIR/refs/heads/\fR
342 directory, except when using packed refs\&. (See
343 \fBgit-pack-refs\fR(1)\&.)
346 HEAD
347 .RS 4
348 The current
349 branch\&. In more detail: Your
350 working tree
351 is normally derived from the state of the tree referred to by HEAD\&. HEAD is a reference to one of the
352 heads
353 in your repository, except when using a
354 detached HEAD, in which case it directly references an arbitrary commit\&.
357 head ref
358 .RS 4
359 A synonym for
360 head\&.
363 hook
364 .RS 4
365 During the normal execution of several Git commands, call\-outs are made to optional scripts that allow a developer to add functionality or checking\&. Typically, the hooks allow for a command to be pre\-verified and potentially aborted, and allow for a post\-notification after the operation is done\&. The hook scripts are found in the
366 \fB$GIT_DIR/hooks/\fR
367 directory, and are enabled by simply removing the
368 \fB\&.sample\fR
369 suffix from the filename\&. In earlier versions of Git you had to make them executable\&.
372 index
373 .RS 4
374 A collection of files with stat information, whose contents are stored as objects\&. The index is a stored version of your
375 working tree\&. Truth be told, it can also contain a second, and even a third version of a working tree, which are used when
376 merging\&.
379 index entry
380 .RS 4
381 The information regarding a particular file, stored in the
382 index\&. An index entry can be unmerged, if a
383 merge
384 was started, but not yet finished (i\&.e\&. if the index contains multiple versions of that file)\&.
387 master
388 .RS 4
389 The default development
390 branch\&. Whenever you create a Git
391 repository, a branch named "master" is created, and becomes the active branch\&. In most cases, this contains the local development, though that is purely by convention and is not required\&.
394 merge
395 .RS 4
396 As a verb: To bring the contents of another
397 branch
398 (possibly from an external
399 repository) into the current branch\&. In the case where the merged\-in branch is from a different repository, this is done by first
400 fetching
401 the remote branch and then merging the result into the current branch\&. This combination of fetch and merge operations is called a
402 pull\&. Merging is performed by an automatic process that identifies changes made since the branches diverged, and then applies all those changes together\&. In cases where changes conflict, manual intervention may be required to complete the merge\&.
404 As a noun: unless it is a
405 fast\-forward, a successful merge results in the creation of a new
406 commit
407 representing the result of the merge, and having as
408 parents
409 the tips of the merged
410 branches\&. This commit is referred to as a "merge commit", or sometimes just a "merge"\&.
413 object
414 .RS 4
415 The unit of storage in Git\&. It is uniquely identified by the
416 SHA\-1
417 of its contents\&. Consequently, an object cannot be changed\&.
420 object database
421 .RS 4
422 Stores a set of "objects", and an individual
423 object
424 is identified by its
425 object name\&. The objects usually live in
426 \fB$GIT_DIR/objects/\fR\&.
429 object identifier (oid)
430 .RS 4
431 Synonym for
432 object name\&.
435 object name
436 .RS 4
437 The unique identifier of an
438 object\&. The object name is usually represented by a 40 character hexadecimal string\&. Also colloquially called
439 SHA\-1\&.
442 object type
443 .RS 4
444 One of the identifiers "commit", "tree", "tag" or "blob" describing the type of an
445 object\&.
448 octopus
449 .RS 4
451 merge
452 more than two
453 branches\&.
456 origin
457 .RS 4
458 The default upstream
459 repository\&. Most projects have at least one upstream project which they track\&. By default
460 \fIorigin\fR
461 is used for that purpose\&. New upstream updates will be fetched into
462 remote\-tracking branches
463 named origin/name\-of\-upstream\-branch, which you can see using
464 \fBgit branch \-r\fR\&.
467 overlay
468 .RS 4
469 Only update and add files to the working directory, but don\(cqt delete them, similar to how
470 \fIcp \-R\fR
471 would update the contents in the destination directory\&. This is the default mode in a
472 checkout
473 when checking out files from the
474 index
475 or a
476 tree\-ish\&. In contrast, no\-overlay mode also deletes tracked files not present in the source, similar to
477 \fIrsync \-\-delete\fR\&.
480 pack
481 .RS 4
482 A set of objects which have been compressed into one file (to save space or to transmit them efficiently)\&.
485 pack index
486 .RS 4
487 The list of identifiers, and other information, of the objects in a
488 pack, to assist in efficiently accessing the contents of a pack\&.
491 pathspec
492 .RS 4
493 Pattern used to limit paths in Git commands\&.
495 Pathspecs are used on the command line of "git ls\-files", "git ls\-tree", "git add", "git grep", "git diff", "git checkout", and many other commands to limit the scope of operations to some subset of the tree or working tree\&. See the documentation of each command for whether paths are relative to the current directory or toplevel\&. The pathspec syntax is as follows:
497 .RS 4
498 .ie n \{\
499 \h'-04'\(bu\h'+03'\c
501 .el \{\
502 .sp -1
503 .IP \(bu 2.3
505 any path matches itself
508 .RS 4
509 .ie n \{\
510 \h'-04'\(bu\h'+03'\c
512 .el \{\
513 .sp -1
514 .IP \(bu 2.3
516 the pathspec up to the last slash represents a directory prefix\&. The scope of that pathspec is limited to that subtree\&.
519 .RS 4
520 .ie n \{\
521 \h'-04'\(bu\h'+03'\c
523 .el \{\
524 .sp -1
525 .IP \(bu 2.3
527 the rest of the pathspec is a pattern for the remainder of the pathname\&. Paths relative to the directory prefix will be matched against that pattern using fnmatch(3); in particular,
528 \fI*\fR
530 \fI?\fR
531 \fIcan\fR
532 match directory separators\&.
535 For example, Documentation/*\&.jpg will match all \&.jpg files in the Documentation subtree, including Documentation/chapter_1/figure_1\&.jpg\&.
537 A pathspec that begins with a colon
538 \fB:\fR
539 has special meaning\&. In the short form, the leading colon
540 \fB:\fR
541 is followed by zero or more "magic signature" letters (which optionally is terminated by another colon
542 \fB:\fR), and the remainder is the pattern to match against the path\&. The "magic signature" consists of ASCII symbols that are neither alphanumeric, glob, regex special characters nor colon\&. The optional colon that terminates the "magic signature" can be omitted if the pattern begins with a character that does not belong to "magic signature" symbol set and is not a colon\&.
544 In the long form, the leading colon
545 \fB:\fR
546 is followed by an open parenthesis
547 \fB(\fR, a comma\-separated list of zero or more "magic words", and a close parentheses
548 \fB)\fR, and the remainder is the pattern to match against the path\&.
550 A pathspec with only a colon means "there is no pathspec"\&. This form should not be combined with other pathspec\&.
553 .RS 4
554 The magic word
555 \fBtop\fR
556 (magic signature:
557 \fB/\fR) makes the pattern match from the root of the working tree, even when you are running the command from inside a subdirectory\&.
560 literal
561 .RS 4
562 Wildcards in the pattern such as
563 \fB*\fR
565 \fB?\fR
566 are treated as literal characters\&.
569 icase
570 .RS 4
571 Case insensitive match\&.
574 glob
575 .RS 4
576 Git treats the pattern as a shell glob suitable for consumption by fnmatch(3) with the FNM_PATHNAME flag: wildcards in the pattern will not match a / in the pathname\&. For example, "Documentation/*\&.html" matches "Documentation/git\&.html" but not "Documentation/ppc/ppc\&.html" or "tools/perf/Documentation/perf\&.html"\&.
578 Two consecutive asterisks ("\fB**\fR") in patterns matched against full pathname may have special meaning:
580 .RS 4
581 .ie n \{\
582 \h'-04'\(bu\h'+03'\c
584 .el \{\
585 .sp -1
586 .IP \(bu 2.3
588 A leading "\fB**\fR" followed by a slash means match in all directories\&. For example, "\fB**/foo\fR" matches file or directory "\fBfoo\fR" anywhere, the same as pattern "\fBfoo\fR"\&. "\fB**/foo/bar\fR" matches file or directory "\fBbar\fR" anywhere that is directly under directory "\fBfoo\fR"\&.
591 .RS 4
592 .ie n \{\
593 \h'-04'\(bu\h'+03'\c
595 .el \{\
596 .sp -1
597 .IP \(bu 2.3
599 A trailing "\fB/**\fR" matches everything inside\&. For example, "\fBabc/**\fR" matches all files inside directory "abc", relative to the location of the
600 \fB\&.gitignore\fR
601 file, with infinite depth\&.
604 .RS 4
605 .ie n \{\
606 \h'-04'\(bu\h'+03'\c
608 .el \{\
609 .sp -1
610 .IP \(bu 2.3
612 A slash followed by two consecutive asterisks then a slash matches zero or more directories\&. For example, "\fBa/**/b\fR" matches "\fBa/b\fR", "\fBa/x/b\fR", "\fBa/x/y/b\fR" and so on\&.
615 .RS 4
616 .ie n \{\
617 \h'-04'\(bu\h'+03'\c
619 .el \{\
620 .sp -1
621 .IP \(bu 2.3
623 Other consecutive asterisks are considered invalid\&.
625 Glob magic is incompatible with literal magic\&.
629 attr
630 .RS 4
631 After
632 \fBattr:\fR
633 comes a space separated list of "attribute requirements", all of which must be met in order for the path to be considered a match; this is in addition to the usual non\-magic pathspec pattern matching\&. See
634 \fBgitattributes\fR(5)\&.
636 Each of the attribute requirements for the path takes one of these forms:
638 .RS 4
639 .ie n \{\
640 \h'-04'\(bu\h'+03'\c
642 .el \{\
643 .sp -1
644 .IP \(bu 2.3
646 "\fBATTR\fR" requires that the attribute
647 \fBATTR\fR
648 be set\&.
651 .RS 4
652 .ie n \{\
653 \h'-04'\(bu\h'+03'\c
655 .el \{\
656 .sp -1
657 .IP \(bu 2.3
659 "\fB\-ATTR\fR" requires that the attribute
660 \fBATTR\fR
661 be unset\&.
664 .RS 4
665 .ie n \{\
666 \h'-04'\(bu\h'+03'\c
668 .el \{\
669 .sp -1
670 .IP \(bu 2.3
672 "\fBATTR=VALUE\fR" requires that the attribute
673 \fBATTR\fR
674 be set to the string
675 \fBVALUE\fR\&.
678 .RS 4
679 .ie n \{\
680 \h'-04'\(bu\h'+03'\c
682 .el \{\
683 .sp -1
684 .IP \(bu 2.3
686 "\fB!ATTR\fR" requires that the attribute
687 \fBATTR\fR
688 be unspecified\&.
690 Note that when matching against a tree object, attributes are still obtained from working tree, not from the given tree object\&.
694 exclude
695 .RS 4
696 After a path matches any non\-exclude pathspec, it will be run through all exclude pathspecs (magic signature:
697 \fB!\fR
698 or its synonym
699 \fB^\fR)\&. If it matches, the path is ignored\&. When there is no non\-exclude pathspec, the exclusion is applied to the result set as if invoked without any pathspec\&.
703 parent
704 .RS 4
706 commit object
707 contains a (possibly empty) list of the logical predecessor(s) in the line of development, i\&.e\&. its parents\&.
710 pickaxe
711 .RS 4
712 The term
713 pickaxe
714 refers to an option to the diffcore routines that help select changes that add or delete a given text string\&. With the
715 \fB\-\-pickaxe\-all\fR
716 option, it can be used to view the full
717 changeset
718 that introduced or removed, say, a particular line of text\&. See
719 \fBgit-diff\fR(1)\&.
722 plumbing
723 .RS 4
724 Cute name for
725 core Git\&.
728 porcelain
729 .RS 4
730 Cute name for programs and program suites depending on
731 core Git, presenting a high level access to core Git\&. Porcelains expose more of a
733 interface than the
734 plumbing\&.
737 per\-worktree ref
738 .RS 4
739 Refs that are per\-worktree, rather than global\&. This is presently only
740 HEAD
741 and any refs that start with
742 \fBrefs/bisect/\fR, but might later include other unusual refs\&.
745 pseudoref
746 .RS 4
747 Pseudorefs are a class of files under
748 \fB$GIT_DIR\fR
749 which behave like refs for the purposes of rev\-parse, but which are treated specially by git\&. Pseudorefs both have names that are all\-caps, and always start with a line consisting of a
750 SHA\-1
751 followed by whitespace\&. So, HEAD is not a pseudoref, because it is sometimes a symbolic ref\&. They might optionally contain some additional data\&.
752 \fBMERGE_HEAD\fR
754 \fBCHERRY_PICK_HEAD\fR
755 are examples\&. Unlike
756 per\-worktree refs, these files cannot be symbolic refs, and never have reflogs\&. They also cannot be updated through the normal ref update machinery\&. Instead, they are updated by directly writing to the files\&. However, they can be read as if they were refs, so
757 \fBgit rev\-parse MERGE_HEAD\fR
758 will work\&.
761 pull
762 .RS 4
763 Pulling a
764 branch
765 means to
766 fetch
767 it and
768 merge
769 it\&. See also
770 \fBgit-pull\fR(1)\&.
773 push
774 .RS 4
775 Pushing a
776 branch
777 means to get the branch\(cqs
778 head ref
779 from a remote
780 repository, find out if it is an ancestor to the branch\(cqs local head ref, and in that case, putting all objects, which are
781 reachable
782 from the local head ref, and which are missing from the remote repository, into the remote
783 object database, and updating the remote head ref\&. If the remote
784 head
785 is not an ancestor to the local head, the push fails\&.
788 reachable
789 .RS 4
790 All of the ancestors of a given
791 commit
792 are said to be "reachable" from that commit\&. More generally, one
793 object
794 is reachable from another if we can reach the one from the other by a
795 chain
796 that follows
797 tags
798 to whatever they tag,
799 commits
800 to their parents or trees, and
801 trees
802 to the trees or
803 blobs
804 that they contain\&.
807 reachability bitmaps
808 .RS 4
809 Reachability bitmaps store information about the
810 reachability
811 of a selected set of commits in a packfile, or a multi\-pack index (MIDX), to speed up object search\&. The bitmaps are stored in a "\&.bitmap" file\&. A repository may have at most one bitmap file in use\&. The bitmap file may belong to either one pack, or the repository\(cqs multi\-pack index (if it exists)\&.
814 rebase
815 .RS 4
816 To reapply a series of changes from a
817 branch
818 to a different base, and reset the
819 head
820 of that branch to the result\&.
824 .RS 4
825 A name that begins with
826 \fBrefs/\fR
827 (e\&.g\&.
828 \fBrefs/heads/master\fR) that points to an
829 object name
830 or another ref (the latter is called a
831 symbolic ref)\&. For convenience, a ref can sometimes be abbreviated when used as an argument to a Git command; see
832 \fBgitrevisions\fR(7)
833 for details\&. Refs are stored in the
834 repository\&.
836 The ref namespace is hierarchical\&. Different subhierarchies are used for different purposes (e\&.g\&. the
837 \fBrefs/heads/\fR
838 hierarchy is used to represent local branches)\&.
840 There are a few special\-purpose refs that do not begin with
841 \fBrefs/\fR\&. The most notable example is
842 \fBHEAD\fR\&.
845 reflog
846 .RS 4
847 A reflog shows the local "history" of a ref\&. In other words, it can tell you what the 3rd last revision in
848 \fIthis\fR
849 repository was, and what was the current state in
850 \fIthis\fR
851 repository, yesterday 9:14pm\&. See
852 \fBgit-reflog\fR(1)
853 for details\&.
856 refspec
857 .RS 4
858 A "refspec" is used by
859 fetch
861 push
862 to describe the mapping between remote
864 and local ref\&.
867 remote repository
868 .RS 4
870 repository
871 which is used to track the same project but resides somewhere else\&. To communicate with remotes, see
872 fetch
874 push\&.
877 remote\-tracking branch
878 .RS 4
881 that is used to follow changes from another
882 repository\&. It typically looks like
883 \fIrefs/remotes/foo/bar\fR
884 (indicating that it tracks a branch named
885 \fIbar\fR
886 in a remote named
887 \fIfoo\fR), and matches the right\-hand\-side of a configured fetch
888 refspec\&. A remote\-tracking branch should not contain direct modifications or have local commits made to it\&.
891 repository
892 .RS 4
893 A collection of
894 refs
895 together with an
896 object database
897 containing all objects which are
898 reachable
899 from the refs, possibly accompanied by meta data from one or more
900 porcelains\&. A repository can share an object database with other repositories via
901 alternates mechanism\&.
904 resolve
905 .RS 4
906 The action of fixing up manually what a failed automatic
907 merge
908 left behind\&.
911 revision
912 .RS 4
913 Synonym for
914 commit
915 (the noun)\&.
918 rewind
919 .RS 4
920 To throw away part of the development, i\&.e\&. to assign the
921 head
922 to an earlier
923 revision\&.
927 .RS 4
928 Source code management (tool)\&.
931 SHA\-1
932 .RS 4
933 "Secure Hash Algorithm 1"; a cryptographic hash function\&. In the context of Git used as a synonym for
934 object name\&.
937 shallow clone
938 .RS 4
939 Mostly a synonym to
940 shallow repository
941 but the phrase makes it more explicit that it was created by running
942 \fBgit clone \-\-depth=\&.\&.\&.\fR
943 command\&.
946 shallow repository
947 .RS 4
948 A shallow
949 repository
950 has an incomplete history some of whose
951 commits
952 have
953 parents
954 cauterized away (in other words, Git is told to pretend that these commits do not have the parents, even though they are recorded in the
955 commit object)\&. This is sometimes useful when you are interested only in the recent history of a project even though the real history recorded in the upstream is much larger\&. A shallow repository is created by giving the
956 \fB\-\-depth\fR
957 option to
958 \fBgit-clone\fR(1), and its history can be later deepened with
959 \fBgit-fetch\fR(1)\&.
962 stash entry
963 .RS 4
965 object
966 used to temporarily store the contents of a
967 dirty
968 working directory and the index for future reuse\&.
971 submodule
972 .RS 4
974 repository
975 that holds the history of a separate project inside another repository (the latter of which is called
976 superproject)\&.
979 superproject
980 .RS 4
982 repository
983 that references repositories of other projects in its working tree as
984 submodules\&. The superproject knows about the names of (but does not hold copies of) commit objects of the contained submodules\&.
987 symref
988 .RS 4
989 Symbolic reference: instead of containing the
990 SHA\-1
991 id itself, it is of the format
992 \fIref: refs/some/thing\fR
993 and when referenced, it recursively dereferences to this reference\&.
994 \fIHEAD\fR
995 is a prime example of a symref\&. Symbolic references are manipulated with the
996 \fBgit-symbolic-ref\fR(1)
997 command\&.
1001 .RS 4
1004 under
1005 \fBrefs/tags/\fR
1006 namespace that points to an object of an arbitrary type (typically a tag points to either a
1008 or a
1009 commit object)\&. In contrast to a
1010 head, a tag is not updated by the
1011 \fBcommit\fR
1012 command\&. A Git tag has nothing to do with a Lisp tag (which would be called an
1013 object type
1014 in Git\(cqs context)\&. A tag is most typically used to mark a particular point in the commit ancestry
1015 chain\&.
1018 tag object
1019 .RS 4
1021 object
1022 containing a
1024 pointing to another object, which can contain a message just like a
1025 commit object\&. It can also contain a (PGP) signature, in which case it is called a "signed tag object"\&.
1028 topic branch
1029 .RS 4
1030 A regular Git
1031 branch
1032 that is used by a developer to identify a conceptual line of development\&. Since branches are very easy and inexpensive, it is often desirable to have several small branches that each contain very well defined concepts or small incremental yet related changes\&.
1035 tree
1036 .RS 4
1037 Either a
1038 working tree, or a
1039 tree object
1040 together with the dependent
1041 blob
1042 and tree objects (i\&.e\&. a stored representation of a working tree)\&.
1045 tree object
1046 .RS 4
1048 object
1049 containing a list of file names and modes along with refs to the associated blob and/or tree objects\&. A
1050 tree
1051 is equivalent to a
1052 directory\&.
1055 tree\-ish (also treeish)
1056 .RS 4
1058 tree object
1059 or an
1060 object
1061 that can be recursively dereferenced to a tree object\&. Dereferencing a
1062 commit object
1063 yields the tree object corresponding to the
1064 revision\*(Aqs top
1065 directory\&. The following are all tree\-ishes: a
1066 commit\-ish, a tree object, a
1067 tag object
1068 that points to a tree object, a tag object that points to a tag object that points to a tree object, etc\&.
1071 unmerged index
1072 .RS 4
1074 index
1075 which contains unmerged
1076 index entries\&.
1079 unreachable object
1080 .RS 4
1082 object
1083 which is not
1084 reachable
1085 from a
1086 branch,
1087 tag, or any other reference\&.
1090 upstream branch
1091 .RS 4
1092 The default
1093 branch
1094 that is merged into the branch in question (or the branch in question is rebased onto)\&. It is configured via branch\&.<name>\&.remote and branch\&.<name>\&.merge\&. If the upstream branch of
1095 \fIA\fR
1097 \fIorigin/B\fR
1098 sometimes we say "\fIA\fR
1099 is tracking
1100 \fIorigin/B\fR"\&.
1103 working tree
1104 .RS 4
1105 The tree of actual checked out files\&. The working tree normally contains the contents of the
1106 HEAD
1107 commit\(cqs tree, plus any local changes that you have made but not yet committed\&.
1110 worktree
1111 .RS 4
1112 A repository can have zero (i\&.e\&. bare repository) or one or more worktrees attached to it\&. One "worktree" consists of a "working tree" and repository metadata, most of which are shared among other worktrees of a single repository, and some of which are maintained separately per worktree (e\&.g\&. the index, HEAD and pseudorefs like MERGE_HEAD, per\-worktree refs and per\-worktree configuration file)\&.
1114 .SH "SEE ALSO"
1116 \fBgittutorial\fR(7), \fBgittutorial-2\fR(7), \fBgitcvs-migration\fR(7), \fBgiteveryday\fR(7), \m[blue]\fBThe Git User\(cqs Manual\fR\m[]\&\s-2\u[1]\d\s+2
1117 .SH "GIT"
1119 Part of the \fBgit\fR(1) suite
1120 .SH "NOTES"
1121 .IP " 1." 4
1122 The Git User\(cqs Manual
1123 .RS 4
1124 \%git-htmldocs/user-manual.html