blob: e903abfeb874f3d185bbf26e21b2ce529084b305 [file] [log] [blame]
Junio C Hamano3d5b41f2007-03-26 02:33:411GIT Glossary
2============
Junio C Hamano1a4e8412005-12-27 08:17:233
Junio C Hamano3d5b41f2007-03-26 02:33:414[[def_alternate_object_database]]alternate object database::
Junio C Hamano75485c82007-05-19 04:20:335Via the alternates mechanism, a <<def_repository,repository>>
6can inherit part of its <<def_object_database,object database>>
7from another object database, which is called "alternate".
Junio C Hamano1a4e8412005-12-27 08:17:238
Junio C Hamano3d5b41f2007-03-26 02:33:419[[def_bare_repository]]bare repository::
Junio C Hamano75485c82007-05-19 04:20:3310A bare repository is normally an appropriately
Junio C Hamano3d5b41f2007-03-26 02:33:4111named <<def_directory,directory>> with a `.git` suffix that does not
12have a locally checked-out copy of any of the files under
Junio C Hamano36460982007-05-27 04:29:1213revision control. That is, all of the `git`
Junio C Hamano3d5b41f2007-03-26 02:33:4114administrative and control files that would normally be present in the
15hidden `.git` sub-directory are directly present in the
16`repository.git` directory instead,
17and no other files are present and checked out. Usually publishers of
18public repositories make bare repositories available.
Junio C Hamano1a4e8412005-12-27 08:17:2319
Junio C Hamano3d5b41f2007-03-26 02:33:4120[[def_blob_object]]blob object::
21Untyped <<def_object,object>>, e.g. the contents of a file.
Junio C Hamano1a4e8412005-12-27 08:17:2322
Junio C Hamano3d5b41f2007-03-26 02:33:4123[[def_branch]]branch::
Junio C Hamano75485c82007-05-19 04:20:3324A "branch" is an active line of development. The most recent
25<<def_commit,commit>> on a branch is referred to as the tip of
26that branch. The tip of the branch is referenced by a branch
27<<def_head,head>>, which moves forward as additional development
28is done on the branch. A single git
29<<def_repository,repository>> can track an arbitrary number of
30branches, but your <<def_working_tree,working tree>> is
31associated with just one of them (the "current" or "checked out"
32branch), and <<def_HEAD,HEAD>> points to that branch.
Junio C Hamano88a3a072006-05-04 08:01:4333
Junio C Hamano3d5b41f2007-03-26 02:33:4134[[def_cache]]cache::
35Obsolete for: <<def_index,index>>.
Junio C Hamano88a3a072006-05-04 08:01:4336
Junio C Hamano3d5b41f2007-03-26 02:33:4137[[def_chain]]chain::
38A list of objects, where each <<def_object,object>> in the list contains
39a reference to its successor (for example, the successor of a
Junio C Hamano36460982007-05-27 04:29:1240<<def_commit,commit>> could be one of its <<def_parent,parents>>).
Junio C Hamano88a3a072006-05-04 08:01:4341
Junio C Hamano3d5b41f2007-03-26 02:33:4142[[def_changeset]]changeset::
43BitKeeper/cvsps speak for "<<def_commit,commit>>". Since git does not
44store changes, but states, it really does not make sense to use the term
45"changesets" with git.
Junio C Hamano88a3a072006-05-04 08:01:4346
Junio C Hamano3d5b41f2007-03-26 02:33:4147[[def_checkout]]checkout::
48The action of updating the <<def_working_tree,working tree>> to a
49<<def_revision,revision>> which was stored in the
50<<def_object_database,object database>>.
Junio C Hamano88a3a072006-05-04 08:01:4351
Junio C Hamano3d5b41f2007-03-26 02:33:4152[[def_cherry-picking]]cherry-picking::
53In <<def_SCM,SCM>> jargon, "cherry pick" means to choose a subset of
54changes out of a series of changes (typically commits) and record them
55as a new series of changes on top of different codebase. In GIT, this is
56performed by "git cherry-pick" command to extract the change introduced
57by an existing <<def_commit,commit>> and to record it based on the tip
Junio C Hamano75485c82007-05-19 04:20:3358of the current <<def_branch,branch>> as a new commit.
Junio C Hamano88a3a072006-05-04 08:01:4359
Junio C Hamano3d5b41f2007-03-26 02:33:4160[[def_clean]]clean::
Junio C Hamano75485c82007-05-19 04:20:3361A <<def_working_tree,working tree>> is clean, if it
Junio C Hamano3d5b41f2007-03-26 02:33:4162corresponds to the <<def_revision,revision>> referenced by the current
63<<def_head,head>>. Also see "<<def_dirty,dirty>>".
Junio C Hamano88a3a072006-05-04 08:01:4364
Junio C Hamano3d5b41f2007-03-26 02:33:4165[[def_commit]]commit::
Junio C Hamano75485c82007-05-19 04:20:3366As a noun: A single point in the
67git history; the entire history of a project is represented as a
68set of interrelated commits. The word "commit" is often
69used by git in the same places other revision control systems
70use the words "revision" or "version". Also used as a short
71hand for <<def_commit_object,commit object>>.
72+
73As a verb: The action of storing a new snapshot of the project's
74state in the git history, by creating a new commit representing the current
75state of the <<def_index,index>> and advancing <<def_HEAD,HEAD>>
76to point at the new commit.
Junio C Hamano88a3a072006-05-04 08:01:4377
Junio C Hamano3d5b41f2007-03-26 02:33:4178[[def_commit_object]]commit object::
79An <<def_object,object>> which contains the information about a
Junio C Hamano36460982007-05-27 04:29:1280particular <<def_revision,revision>>, such as <<def_parent,parents>>, committer,
Junio C Hamano3d5b41f2007-03-26 02:33:4181author, date and the <<def_tree_object,tree object>> which corresponds
82to the top <<def_directory,directory>> of the stored
Junio C Hamano36460982007-05-27 04:29:1283revision.
Junio C Hamano1a4e8412005-12-27 08:17:2384
Junio C Hamano3d5b41f2007-03-26 02:33:4185[[def_core_git]]core git::
86Fundamental data structures and utilities of git. Exposes only limited
87source code management tools.
Junio C Hamano1a4e8412005-12-27 08:17:2388
Junio C Hamano3d5b41f2007-03-26 02:33:4189[[def_DAG]]DAG::
90Directed acyclic graph. The <<def_commit,commit>> objects form a
91directed acyclic graph, because they have parents (directed), and the
Junio C Hamano75485c82007-05-19 04:20:3392graph of commit objects is acyclic (there is no
Junio C Hamano3d5b41f2007-03-26 02:33:4193<<def_chain,chain>> which begins and ends with the same
94<<def_object,object>>).
Junio C Hamanoaa83a7d2007-03-05 02:37:2995
Junio C Hamano3d5b41f2007-03-26 02:33:4196[[def_dangling_object]]dangling object::
97An <<def_unreachable_object,unreachable object>> which is not
98<<def_reachable,reachable>> even from other unreachable objects; a
Junio C Hamano75485c82007-05-19 04:20:3399dangling object has no references to it from any
Junio C Hamano3d5b41f2007-03-26 02:33:41100reference or <<def_object,object>> in the <<def_repository,repository>>.
101
Junio C Hamano75485c82007-05-19 04:20:33102[[def_detached_HEAD]]detached HEAD::
103Normally the <<def_HEAD,HEAD>> stores the name of a
Junio C Hamano36460982007-05-27 04:29:12104<<def_branch,branch>>. However, git also allows you to <<def_checkout,check out>>
105an arbitrary <<def_commit,commit>> that isn't necessarily the tip of any
Junio C Hamano75485c82007-05-19 04:20:33106particular branch. In this case HEAD is said to be "detached".
107
Junio C Hamano3d5b41f2007-03-26 02:33:41108[[def_dircache]]dircache::
Junio C Hamano36460982007-05-27 04:29:12109You are *waaaaay* behind. See <<def_index,index>>.
Junio C Hamano88a3a072006-05-04 08:01:43110
Junio C Hamano3d5b41f2007-03-26 02:33:41111[[def_directory]]directory::
Junio C Hamano88a3a072006-05-04 08:01:43112The list you get with "ls" :-)
113
Junio C Hamano3d5b41f2007-03-26 02:33:41114[[def_dirty]]dirty::
Junio C Hamano75485c82007-05-19 04:20:33115A <<def_working_tree,working tree>> is said to be "dirty" if
Junio C Hamano36460982007-05-27 04:29:12116it contains modifications which have not been <<def_commit,committed>> to the current
Junio C Hamano3d5b41f2007-03-26 02:33:41117<<def_branch,branch>>.
118
119[[def_ent]]ent::
120Favorite synonym to "<<def_tree-ish,tree-ish>>" by some total geeks. See
Junio C Hamano88a3a072006-05-04 08:01:43121`http://en.wikipedia.org/wiki/Ent_(Middle-earth)` for an in-depth
Junio C Hamano3d5b41f2007-03-26 02:33:41122explanation. Avoid this term, not to confuse people.
Junio C Hamano88a3a072006-05-04 08:01:43123
Junio C Hamano36460982007-05-27 04:29:12124[[def_evil_merge]]evil merge::
125An evil merge is a <<def_merge,merge>> that introduces changes that
126do not appear in any <<def_parent,parent>>.
127
Junio C Hamano3d5b41f2007-03-26 02:33:41128[[def_fast_forward]]fast forward::
129A fast-forward is a special type of <<def_merge,merge>> where you have a
130<<def_revision,revision>> and you are "merging" another
131<<def_branch,branch>>'s changes that happen to be a descendant of what
132you have. In such these cases, you do not make a new <<def_merge,merge>>
133<<def_commit,commit>> but instead just update to his
Junio C Hamano75485c82007-05-19 04:20:33134revision. This will happen frequently on a
Junio C Hamano3d5b41f2007-03-26 02:33:41135<<def_tracking_branch,tracking branch>> of a remote
136<<def_repository,repository>>.
Junio C Hamano88a3a072006-05-04 08:01:43137
Junio C Hamano3d5b41f2007-03-26 02:33:41138[[def_fetch]]fetch::
139Fetching a <<def_branch,branch>> means to get the
Junio C Hamano75485c82007-05-19 04:20:33140branch's <<def_head_ref,head ref>> from a remote
141<<def_repository,repository>>, to find out which objects are
142missing from the local <<def_object_database,object database>>,
143and to get them, too. See also gitlink:git-fetch[1].
Junio C Hamano88a3a072006-05-04 08:01:43144
Junio C Hamano3d5b41f2007-03-26 02:33:41145[[def_file_system]]file system::
146Linus Torvalds originally designed git to be a user space file system,
147i.e. the infrastructure to hold files and directories. That ensured the
148efficiency and speed of git.
Junio C Hamano88a3a072006-05-04 08:01:43149
Junio C Hamano3d5b41f2007-03-26 02:33:41150[[def_git_archive]]git archive::
151Synonym for <<def_repository,repository>> (for arch people).
Junio C Hamano88a3a072006-05-04 08:01:43152
Junio C Hamano3d5b41f2007-03-26 02:33:41153[[def_grafts]]grafts::
154Grafts enables two otherwise different lines of development to be joined
155together by recording fake ancestry information for commits. This way
Junio C Hamano36460982007-05-27 04:29:12156you can make git pretend the set of <<def_parent,parents>> a <<def_commit,commit>> has
Junio C Hamano75485c82007-05-19 04:20:33157is different from what was recorded when the commit was
Junio C Hamano3d5b41f2007-03-26 02:33:41158created. Configured via the `.git/info/grafts` file.
Junio C Hamano33db4372006-06-07 19:51:45159
Junio C Hamano3d5b41f2007-03-26 02:33:41160[[def_hash]]hash::
161In git's context, synonym to <<def_object_name,object name>>.
Junio C Hamano88a3a072006-05-04 08:01:43162
Junio C Hamano3d5b41f2007-03-26 02:33:41163[[def_head]]head::
Junio C Hamano36460982007-05-27 04:29:12164A <<def_ref,named reference>> to the <<def_commit,commit>> at the tip of a
Junio C Hamano75485c82007-05-19 04:20:33165<<def_branch,branch>>. Heads are stored in
166`$GIT_DIR/refs/heads/`, except when using packed refs. (See
167gitlink:git-pack-refs[1].)
168
169[[def_HEAD]]HEAD::
Junio C Hamano36460982007-05-27 04:29:12170The current <<def_branch,branch>>. In more detail: Your <<def_working_tree,
Junio C Hamano75485c82007-05-19 04:20:33171working tree>> is normally derived from the state of the tree
172referred to by HEAD. HEAD is a reference to one of the
173<<def_head,heads>> in your repository, except when using a
174<<def_detached_HEAD,detached HEAD>>, in which case it may
175reference an arbitrary commit.
Junio C Hamano88a3a072006-05-04 08:01:43176
Junio C Hamano3d5b41f2007-03-26 02:33:41177[[def_head_ref]]head ref::
Junio C Hamano75485c82007-05-19 04:20:33178A synonym for <<def_head,head>>.
Junio C Hamano88a3a072006-05-04 08:01:43179
Junio C Hamano3d5b41f2007-03-26 02:33:41180[[def_hook]]hook::
181During the normal execution of several git commands, call-outs are made
182to optional scripts that allow a developer to add functionality or
183checking. Typically, the hooks allow for a command to be pre-verified
184and potentially aborted, and allow for a post-notification after the
Junio C Hamano75485c82007-05-19 04:20:33185operation is done. The hook scripts are found in the
Junio C Hamano36460982007-05-27 04:29:12186`$GIT_DIR/hooks/` directory, and are enabled by simply
Junio C Hamano3d5b41f2007-03-26 02:33:41187making them executable.
Junio C Hamano88a3a072006-05-04 08:01:43188
Junio C Hamano3d5b41f2007-03-26 02:33:41189[[def_index]]index::
190A collection of files with stat information, whose contents are stored
Junio C Hamano36460982007-05-27 04:29:12191as objects. The index is a stored version of your
192<<def_working_tree,working tree>>. Truth be told, it can also contain a second, and even
193a third version of a working tree, which are used
194when <<def_merge,merging>>.
Junio C Hamano1a4e8412005-12-27 08:17:23195
Junio C Hamano3d5b41f2007-03-26 02:33:41196[[def_index_entry]]index entry::
197The information regarding a particular file, stored in the
Junio C Hamano75485c82007-05-19 04:20:33198<<def_index,index>>. An index entry can be unmerged, if a
199<<def_merge,merge>> was started, but not yet finished (i.e. if
200the index contains multiple versions of that file).
Junio C Hamano1a4e8412005-12-27 08:17:23201
Junio C Hamano3d5b41f2007-03-26 02:33:41202[[def_master]]master::
Junio C Hamano75485c82007-05-19 04:20:33203The default development <<def_branch,branch>>. Whenever you
204create a git <<def_repository,repository>>, a branch named
205"master" is created, and becomes the active branch. In most
206cases, this contains the local development, though that is
207purely by convention and is not required.
Junio C Hamano1a4e8412005-12-27 08:17:23208
Junio C Hamano3d5b41f2007-03-26 02:33:41209[[def_merge]]merge::
Junio C Hamano75485c82007-05-19 04:20:33210As a verb: To bring the contents of another
211<<def_branch,branch>> (possibly from an external
212<<def_repository,repository>>) into the current branch. In the
213case where the merged-in branch is from a different repository,
214this is done by first <<def_fetch,fetching>> the remote branch
215and then merging the result into the current branch. This
216combination of fetch and merge operations is called a
217<<def_pull,pull>>. Merging is performed by an automatic process
218that identifies changes made since the branches diverged, and
219then applies all those changes together. In cases where changes
220conflict, manual intervention may be required to complete the
221merge.
222+
223As a noun: unless it is a <<def_fast_forward,fast forward>>, a
224successful merge results in the creation of a new <<def_commit,commit>>
225representing the result of the merge, and having as
226<<def_parent,parents>> the tips of the merged <<def_branch,branches>>.
227This commit is referred to as a "merge commit", or sometimes just a
228"merge".
Junio C Hamano1a4e8412005-12-27 08:17:23229
Junio C Hamano3d5b41f2007-03-26 02:33:41230[[def_object]]object::
231The unit of storage in git. It is uniquely identified by the
232<<def_SHA1,SHA1>> of its contents. Consequently, an
Junio C Hamano75485c82007-05-19 04:20:33233object can not be changed.
Junio C Hamano1a4e8412005-12-27 08:17:23234
Junio C Hamano3d5b41f2007-03-26 02:33:41235[[def_object_database]]object database::
236Stores a set of "objects", and an individual <<def_object,object>> is
237identified by its <<def_object_name,object name>>. The objects usually
238live in `$GIT_DIR/objects/`.
Junio C Hamano1a4e8412005-12-27 08:17:23239
Junio C Hamano3d5b41f2007-03-26 02:33:41240[[def_object_identifier]]object identifier::
241Synonym for <<def_object_name,object name>>.
Junio C Hamano1a4e8412005-12-27 08:17:23242
Junio C Hamano3d5b41f2007-03-26 02:33:41243[[def_object_name]]object name::
244The unique identifier of an <<def_object,object>>. The <<def_hash,hash>>
Junio C Hamano75485c82007-05-19 04:20:33245of the object's contents using the Secure Hash Algorithm
Junio C Hamano3d5b41f2007-03-26 02:33:412461 and usually represented by the 40 character hexadecimal encoding of
Junio C Hamano75485c82007-05-19 04:20:33247the <<def_hash,hash>> of the object (possibly followed by
Junio C Hamano3d5b41f2007-03-26 02:33:41248a white space).
Junio C Hamano1a4e8412005-12-27 08:17:23249
Junio C Hamano3d5b41f2007-03-26 02:33:41250[[def_object_type]]object type::
251One of the identifiers
252"<<def_commit,commit>>","<<def_tree,tree>>","<<def_tag,tag>>" or "<<def_blob_object,blob>>"
253describing the type of an <<def_object,object>>.
Junio C Hamano1a4e8412005-12-27 08:17:23254
Junio C Hamano3d5b41f2007-03-26 02:33:41255[[def_octopus]]octopus::
Junio C Hamano36460982007-05-27 04:29:12256To <<def_merge,merge>> more than two <<def_branch,branches>>. Also denotes an
Junio C Hamano3d5b41f2007-03-26 02:33:41257intelligent predator.
Junio C Hamano88a3a072006-05-04 08:01:43258
Junio C Hamano3d5b41f2007-03-26 02:33:41259[[def_origin]]origin::
260The default upstream <<def_repository,repository>>. Most projects have
261at least one upstream project which they track. By default
Junio C Hamano75485c82007-05-19 04:20:33262'origin' is used for that purpose. New upstream updates
Junio C Hamano36460982007-05-27 04:29:12263will be fetched into remote <<def_tracking_branch,tracking branches>> named
Junio C Hamanod3361ad2007-01-01 03:20:24264origin/name-of-upstream-branch, which you can see using
Junio C Hamano36460982007-05-27 04:29:12265"`git branch -r`".
Junio C Hamano88a3a072006-05-04 08:01:43266
Junio C Hamano3d5b41f2007-03-26 02:33:41267[[def_pack]]pack::
268A set of objects which have been compressed into one file (to save space
269or to transmit them efficiently).
Junio C Hamano88a3a072006-05-04 08:01:43270
Junio C Hamano3d5b41f2007-03-26 02:33:41271[[def_pack_index]]pack index::
Junio C Hamano88a3a072006-05-04 08:01:43272The list of identifiers, and other information, of the objects in a
Junio C Hamano3d5b41f2007-03-26 02:33:41273<<def_pack,pack>>, to assist in efficiently accessing the contents of a
Junio C Hamano75485c82007-05-19 04:20:33274pack.
Junio C Hamano1a4e8412005-12-27 08:17:23275
Junio C Hamano3d5b41f2007-03-26 02:33:41276[[def_parent]]parent::
277A <<def_commit_object,commit object>> contains a (possibly empty) list
278of the logical predecessor(s) in the line of development, i.e. its
279parents.
Junio C Hamano1a4e8412005-12-27 08:17:23280
Junio C Hamano3d5b41f2007-03-26 02:33:41281[[def_pickaxe]]pickaxe::
282The term <<def_pickaxe,pickaxe>> refers to an option to the diffcore
283routines that help select changes that add or delete a given text
284string. With the --pickaxe-all option, it can be used to view the full
285<<def_changeset,changeset>> that introduced or removed, say, a
286particular line of text. See gitlink:git-diff[1].
Junio C Hamano1a4e8412005-12-27 08:17:23287
Junio C Hamano3d5b41f2007-03-26 02:33:41288[[def_plumbing]]plumbing::
289Cute name for <<def_core_git,core git>>.
Junio C Hamano1a4e8412005-12-27 08:17:23290
Junio C Hamano3d5b41f2007-03-26 02:33:41291[[def_porcelain]]porcelain::
292Cute name for programs and program suites depending on
293<<def_core_git,core git>>, presenting a high level access to
Junio C Hamano75485c82007-05-19 04:20:33294core git. Porcelains expose more of a <<def_SCM,SCM>>
Junio C Hamano3d5b41f2007-03-26 02:33:41295interface than the <<def_plumbing,plumbing>>.
Junio C Hamano1a4e8412005-12-27 08:17:23296
Junio C Hamano3d5b41f2007-03-26 02:33:41297[[def_pull]]pull::
298Pulling a <<def_branch,branch>> means to <<def_fetch,fetch>> it and
Junio C Hamano75485c82007-05-19 04:20:33299<<def_merge,merge>> it. See also gitlink:git-pull[1].
Junio C Hamano1a4e8412005-12-27 08:17:23300
Junio C Hamano3d5b41f2007-03-26 02:33:41301[[def_push]]push::
Junio C Hamano75485c82007-05-19 04:20:33302Pushing a <<def_branch,branch>> means to get the branch's
Junio C Hamano3d5b41f2007-03-26 02:33:41303<<def_head_ref,head ref>> from a remote <<def_repository,repository>>,
Junio C Hamano75485c82007-05-19 04:20:33304find out if it is an ancestor to the branch's local
305head ref is a direct, and in that case, putting all
Junio C Hamano3d5b41f2007-03-26 02:33:41306objects, which are <<def_reachable,reachable>> from the local
Junio C Hamano75485c82007-05-19 04:20:33307head ref, and which are missing from the remote
308repository, into the remote
Junio C Hamano3d5b41f2007-03-26 02:33:41309<<def_object_database,object database>>, and updating the remote
Junio C Hamano75485c82007-05-19 04:20:33310head ref. If the remote <<def_head,head>> is not an
311ancestor to the local head, the push fails.
Junio C Hamano1a4e8412005-12-27 08:17:23312
Junio C Hamano3d5b41f2007-03-26 02:33:41313[[def_reachable]]reachable::
314All of the ancestors of a given <<def_commit,commit>> are said to be
Junio C Hamano75485c82007-05-19 04:20:33315"reachable" from that commit. More
316generally, one <<def_object,object>> is reachable from
Junio C Hamano3d5b41f2007-03-26 02:33:41317another if we can reach the one from the other by a <<def_chain,chain>>
318that follows <<def_tag,tags>> to whatever they tag,
319<<def_commit_object,commits>> to their parents or trees, and
320<<def_tree_object,trees>> to the trees or <<def_blob_object,blobs>>
321that they contain.
Junio C Hamanof3e80c02006-01-11 00:54:55322
Junio C Hamano3d5b41f2007-03-26 02:33:41323[[def_rebase]]rebase::
324To reapply a series of changes from a <<def_branch,branch>> to a
325different base, and reset the <<def_head,head>> of that branch
326to the result.
Junio C Hamanof3e80c02006-01-11 00:54:55327
Junio C Hamano3d5b41f2007-03-26 02:33:41328[[def_ref]]ref::
329A 40-byte hex representation of a <<def_SHA1,SHA1>> or a name that
330denotes a particular <<def_object,object>>. These may be stored in
331`$GIT_DIR/refs/`.
Junio C Hamano1a4e8412005-12-27 08:17:23332
Junio C Hamano3d5b41f2007-03-26 02:33:41333[[def_refspec]]refspec::
Junio C Hamano36460982007-05-27 04:29:12334A "refspec" is used by <<def_fetch,fetch>> and
Junio C Hamano75485c82007-05-19 04:20:33335<<def_push,push>> to describe the mapping between remote
336<<def_ref,ref>> and local ref. They are combined with a colon in
337the format <src>:<dst>, preceded by an optional plus sign, +.
338For example: `git fetch $URL
339refs/heads/master:refs/heads/origin` means "grab the master
340<<def_branch,branch>> <<def_head,head>> from the $URL and store
341it as my origin branch head". And `git push
342$URL refs/heads/master:refs/heads/to-upstream` means "publish my
343master branch head as to-upstream branch at $URL". See also
344gitlink:git-push[1]
Junio C Hamano88a3a072006-05-04 08:01:43345
Junio C Hamano3d5b41f2007-03-26 02:33:41346[[def_repository]]repository::
Junio C Hamano36460982007-05-27 04:29:12347A collection of <<def_ref,refs>> together with an
Junio C Hamano75485c82007-05-19 04:20:33348<<def_object_database,object database>> containing all objects
349which are <<def_reachable,reachable>> from the refs, possibly
Junio C Hamano36460982007-05-27 04:29:12350accompanied by meta data from one or more <<def_porcelain,porcelains>>. A
351repository can share an object database with other repositories
352via <<def_alternate_object_database,alternates mechanism>>.
Junio C Hamano88a3a072006-05-04 08:01:43353
Junio C Hamano3d5b41f2007-03-26 02:33:41354[[def_resolve]]resolve::
355The action of fixing up manually what a failed automatic
356<<def_merge,merge>> left behind.
Junio C Hamano88a3a072006-05-04 08:01:43357
Junio C Hamano3d5b41f2007-03-26 02:33:41358[[def_revision]]revision::
359A particular state of files and directories which was stored in the
360<<def_object_database,object database>>. It is referenced by a
361<<def_commit_object,commit object>>.
Junio C Hamano88a3a072006-05-04 08:01:43362
Junio C Hamano3d5b41f2007-03-26 02:33:41363[[def_rewind]]rewind::
364To throw away part of the development, i.e. to assign the
365<<def_head,head>> to an earlier <<def_revision,revision>>.
Junio C Hamano88a3a072006-05-04 08:01:43366
Junio C Hamano3d5b41f2007-03-26 02:33:41367[[def_SCM]]SCM::
Junio C Hamano88a3a072006-05-04 08:01:43368Source code management (tool).
369
Junio C Hamano3d5b41f2007-03-26 02:33:41370[[def_SHA1]]SHA1::
371Synonym for <<def_object_name,object name>>.
Junio C Hamano88a3a072006-05-04 08:01:43372
Junio C Hamano3d5b41f2007-03-26 02:33:41373[[def_shallow_repository]]shallow repository::
Junio C Hamano36460982007-05-27 04:29:12374A shallow <<def_repository,repository>> has an incomplete
375history some of whose <<def_commit,commits>> have <<def_parent,parents>> cauterized away (in other
Junio C Hamano3d5b41f2007-03-26 02:33:41376words, git is told to pretend that these commits do not have the
377parents, even though they are recorded in the <<def_commit_object,commit
378object>>). This is sometimes useful when you are interested only in the
379recent history of a project even though the real history recorded in the
Junio C Hamano75485c82007-05-19 04:20:33380upstream is much larger. A shallow repository
Junio C Hamano3d5b41f2007-03-26 02:33:41381is created by giving the `--depth` option to gitlink:git-clone[1], and
382its history can be later deepened with gitlink:git-fetch[1].
Junio C Hamano4f9a6052007-01-17 20:25:16383
Junio C Hamano3d5b41f2007-03-26 02:33:41384[[def_symref]]symref::
Junio C Hamano75485c82007-05-19 04:20:33385Symbolic reference: instead of containing the <<def_SHA1,SHA1>>
386id itself, it is of the format 'ref: refs/some/thing' and when
387referenced, it recursively dereferences to this reference.
388'<<def_HEAD,HEAD>>' is a prime example of a symref. Symbolic
389references are manipulated with the gitlink:git-symbolic-ref[1]
390command.
Junio C Hamano3a971022006-11-18 22:17:58391
Junio C Hamano3d5b41f2007-03-26 02:33:41392[[def_tag]]tag::
Junio C Hamano36460982007-05-27 04:29:12393A <<def_ref,ref>> pointing to a <<def_tag_object,tag>> or
Junio C Hamano3d5b41f2007-03-26 02:33:41394<<def_commit_object,commit object>>. In contrast to a <<def_head,head>>,
395a tag is not changed by a <<def_commit,commit>>. Tags (not
396<<def_tag_object,tag objects>>) are stored in `$GIT_DIR/refs/tags/`. A
397git tag has nothing to do with a Lisp tag (which would be
398called an <<def_object_type,object type>> in git's context). A
399tag is most typically used to mark a particular point in the
Junio C Hamano75485c82007-05-19 04:20:33400commit ancestry <<def_chain,chain>>.
Junio C Hamano88a3a072006-05-04 08:01:43401
Junio C Hamano3d5b41f2007-03-26 02:33:41402[[def_tag_object]]tag object::
403An <<def_object,object>> containing a <<def_ref,ref>> pointing to
Junio C Hamano75485c82007-05-19 04:20:33404another object, which can contain a message just like a
Junio C Hamano3d5b41f2007-03-26 02:33:41405<<def_commit_object,commit object>>. It can also contain a (PGP)
Junio C Hamano36460982007-05-27 04:29:12406signature, in which case it is called a "signed tag object".
Junio C Hamano88a3a072006-05-04 08:01:43407
Junio C Hamano3d5b41f2007-03-26 02:33:41408[[def_topic_branch]]topic branch::
409A regular git <<def_branch,branch>> that is used by a developer to
410identify a conceptual line of development. Since branches are very easy
411and inexpensive, it is often desirable to have several small branches
412that each contain very well defined concepts or small incremental yet
413related changes.
Junio C Hamano88a3a072006-05-04 08:01:43414
Junio C Hamano3d5b41f2007-03-26 02:33:41415[[def_tracking_branch]]tracking branch::
416A regular git <<def_branch,branch>> that is used to follow changes from
Junio C Hamano75485c82007-05-19 04:20:33417another <<def_repository,repository>>. A tracking
418branch should not contain direct modifications or have local commits
419made to it. A tracking branch can usually be
Junio C Hamano3d5b41f2007-03-26 02:33:41420identified as the right-hand-side <<def_ref,ref>> in a Pull:
421<<def_refspec,refspec>>.
Junio C Hamano1a4e8412005-12-27 08:17:23422
Junio C Hamano3d5b41f2007-03-26 02:33:41423[[def_tree]]tree::
424Either a <<def_working_tree,working tree>>, or a <<def_tree_object,tree
Junio C Hamano36460982007-05-27 04:29:12425object>> together with the dependent <<def_blob_object,blob>> and tree objects
Junio C Hamano75485c82007-05-19 04:20:33426(i.e. a stored representation of a working tree).
Junio C Hamano1a4e8412005-12-27 08:17:23427
Junio C Hamano3d5b41f2007-03-26 02:33:41428[[def_tree_object]]tree object::
429An <<def_object,object>> containing a list of file names and modes along
430with refs to the associated blob and/or tree objects. A
431<<def_tree,tree>> is equivalent to a <<def_directory,directory>>.
Junio C Hamano1a4e8412005-12-27 08:17:23432
Junio C Hamano3d5b41f2007-03-26 02:33:41433[[def_tree-ish]]tree-ish::
434A <<def_ref,ref>> pointing to either a <<def_commit_object,commit
435object>>, a <<def_tree_object,tree object>>, or a <<def_tag_object,tag
Junio C Hamano75485c82007-05-19 04:20:33436object>> pointing to a tag or commit or tree object.
Junio C Hamano1a4e8412005-12-27 08:17:23437
Junio C Hamano3d5b41f2007-03-26 02:33:41438[[def_unmerged_index]]unmerged index::
439An <<def_index,index>> which contains unmerged
440<<def_index_entry,index entries>>.
Junio C Hamano1a4e8412005-12-27 08:17:23441
Junio C Hamano3d5b41f2007-03-26 02:33:41442[[def_unreachable_object]]unreachable object::
443An <<def_object,object>> which is not <<def_reachable,reachable>> from a
444<<def_branch,branch>>, <<def_tag,tag>>, or any other reference.
Junio C Hamanoaa83a7d2007-03-05 02:37:29445
Junio C Hamano3d5b41f2007-03-26 02:33:41446[[def_working_tree]]working tree::
Junio C Hamano75485c82007-05-19 04:20:33447The tree of actual checked out files. The working tree is
448normally equal to the <<def_HEAD,HEAD>> plus any local changes
449that you have made but not yet committed.