blob: eb7ba84f1f65a316f3b1b3637983487b699a0a2c [file] [log] [blame]
Junio C Hamano3d5b41f2007-03-26 02:33:411[[def_alternate_object_database]]alternate object database::
Junio C Hamano75485c82007-05-19 04:20:332Via the alternates mechanism, a <<def_repository,repository>>
3can inherit part of its <<def_object_database,object database>>
4from another object database, which is called "alternate".
Junio C Hamano1a4e8412005-12-27 08:17:235
Junio C Hamano3d5b41f2007-03-26 02:33:416[[def_bare_repository]]bare repository::
Junio C Hamano75485c82007-05-19 04:20:337A bare repository is normally an appropriately
Junio C Hamano3d5b41f2007-03-26 02:33:418named <<def_directory,directory>> with a `.git` suffix that does not
9have a locally checked-out copy of any of the files under
Junio C Hamano076ffcc2013-02-06 05:13:2110revision control. That is, all of the Git
Junio C Hamano3d5b41f2007-03-26 02:33:4111administrative and control files that would normally be present in the
12hidden `.git` sub-directory are directly present in the
13`repository.git` directory instead,
14and no other files are present and checked out. Usually publishers of
15public repositories make bare repositories available.
Junio C Hamano1a4e8412005-12-27 08:17:2316
Junio C Hamano3d5b41f2007-03-26 02:33:4117[[def_blob_object]]blob object::
18Untyped <<def_object,object>>, e.g. the contents of a file.
Junio C Hamano1a4e8412005-12-27 08:17:2319
Junio C Hamano3d5b41f2007-03-26 02:33:4120[[def_branch]]branch::
Junio C Hamano75485c82007-05-19 04:20:3321A "branch" is an active line of development. The most recent
22<<def_commit,commit>> on a branch is referred to as the tip of
23that branch. The tip of the branch is referenced by a branch
24<<def_head,head>>, which moves forward as additional development
Junio C Hamano076ffcc2013-02-06 05:13:2125is done on the branch. A single Git
Junio C Hamano75485c82007-05-19 04:20:3326<<def_repository,repository>> can track an arbitrary number of
27branches, but your <<def_working_tree,working tree>> is
28associated with just one of them (the "current" or "checked out"
29branch), and <<def_HEAD,HEAD>> points to that branch.
Junio C Hamano88a3a072006-05-04 08:01:4330
Junio C Hamano3d5b41f2007-03-26 02:33:4131[[def_cache]]cache::
32Obsolete for: <<def_index,index>>.
Junio C Hamano88a3a072006-05-04 08:01:4333
Junio C Hamano3d5b41f2007-03-26 02:33:4134[[def_chain]]chain::
35A list of objects, where each <<def_object,object>> in the list contains
36a reference to its successor (for example, the successor of a
Junio C Hamano36460982007-05-27 04:29:1237<<def_commit,commit>> could be one of its <<def_parent,parents>>).
Junio C Hamano88a3a072006-05-04 08:01:4338
Junio C Hamano3d5b41f2007-03-26 02:33:4139[[def_changeset]]changeset::
Junio C Hamano076ffcc2013-02-06 05:13:2140BitKeeper/cvsps speak for "<<def_commit,commit>>". Since Git does not
Junio C Hamano3d5b41f2007-03-26 02:33:4141store changes, but states, it really does not make sense to use the term
Junio C Hamano076ffcc2013-02-06 05:13:2142"changesets" with Git.
Junio C Hamano88a3a072006-05-04 08:01:4343
Junio C Hamano3d5b41f2007-03-26 02:33:4144[[def_checkout]]checkout::
Junio C Hamanoa14a4032008-03-25 09:11:0245The action of updating all or part of the
46<<def_working_tree,working tree>> with a <<def_tree_object,tree object>>
47or <<def_blob_object,blob>> from the
48<<def_object_database,object database>>, and updating the
49<<def_index,index>> and <<def_HEAD,HEAD>> if the whole working tree has
50been pointed at a new <<def_branch,branch>>.
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
Junio C Hamano076ffcc2013-02-06 05:13:2155as a new series of changes on top of a different codebase. In Git, this is
Junio C Hamano764a6672007-10-23 01:23:3156performed by the "git cherry-pick" command to extract the change introduced
Junio C Hamano3d5b41f2007-03-26 02:33:4157by 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
Junio C Hamano076ffcc2013-02-06 05:13:2167Git history; the entire history of a project is represented as a
Junio C Hamano75485c82007-05-19 04:20:3368set of interrelated commits. The word "commit" is often
Junio C Hamano076ffcc2013-02-06 05:13:2169used by Git in the same places other revision control systems
Junio C Hamano75485c82007-05-19 04:20:3370use 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
Junio C Hamano076ffcc2013-02-06 05:13:2174state in the Git history, by creating a new commit representing the current
Junio C Hamano75485c82007-05-19 04:20:3375state 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 Hamano076ffcc2013-02-06 05:13:2185[[def_core_git]]core Git::
86Fundamental data structures and utilities of Git. Exposes only limited
Junio C Hamano3d5b41f2007-03-26 02:33:4187source code management tools.
Junio C Hamano1a4e8412005-12-27 08:17:2388
Junio C Hamano3d5b41f2007-03-26 02:33:4189[[def_DAG]]DAG::
Junio C Hamano9e1793f2008-06-02 07:31:1690Directed acyclic graph. The <<def_commit_object,commit objects>> form a
Junio C Hamano3d5b41f2007-03-26 02:33:4191directed acyclic graph, because they have parents (directed), and the
Junio C Hamano9e1793f2008-06-02 07:31:1692graph of commit objects is acyclic (there is no <<def_chain,chain>>
93which begins and ends with the same <<def_object,object>>).
Junio C Hamanoaa83a7d2007-03-05 02:37:2994
Junio C Hamano3d5b41f2007-03-26 02:33:4195[[def_dangling_object]]dangling object::
96An <<def_unreachable_object,unreachable object>> which is not
97<<def_reachable,reachable>> even from other unreachable objects; a
Junio C Hamano75485c82007-05-19 04:20:3398dangling object has no references to it from any
Junio C Hamano3d5b41f2007-03-26 02:33:4199reference or <<def_object,object>> in the <<def_repository,repository>>.
100
Junio C Hamano75485c82007-05-19 04:20:33101[[def_detached_HEAD]]detached HEAD::
102Normally the <<def_HEAD,HEAD>> stores the name of a
Junio C Hamano076ffcc2013-02-06 05:13:21103<<def_branch,branch>>. However, Git also allows you to <<def_checkout,check out>>
Junio C Hamano36460982007-05-27 04:29:12104an arbitrary <<def_commit,commit>> that isn't necessarily the tip of any
Junio C Hamano75485c82007-05-19 04:20:33105particular branch. In this case HEAD is said to be "detached".
106
Junio C Hamano3d5b41f2007-03-26 02:33:41107[[def_dircache]]dircache::
Junio C Hamano36460982007-05-27 04:29:12108You are *waaaaay* behind. See <<def_index,index>>.
Junio C Hamano88a3a072006-05-04 08:01:43109
Junio C Hamano3d5b41f2007-03-26 02:33:41110[[def_directory]]directory::
Junio C Hamano88a3a072006-05-04 08:01:43111The list you get with "ls" :-)
112
Junio C Hamano3d5b41f2007-03-26 02:33:41113[[def_dirty]]dirty::
Junio C Hamano75485c82007-05-19 04:20:33114A <<def_working_tree,working tree>> is said to be "dirty" if
Junio C Hamano36460982007-05-27 04:29:12115it contains modifications which have not been <<def_commit,committed>> to the current
Junio C Hamano3d5b41f2007-03-26 02:33:41116<<def_branch,branch>>.
117
118[[def_ent]]ent::
119Favorite synonym to "<<def_tree-ish,tree-ish>>" by some total geeks. See
Junio C Hamano44dcd492012-07-24 04:35:38120http://en.wikipedia.org/wiki/Ent_(Middle-earth) for an in-depth
Junio C Hamano3d5b41f2007-03-26 02:33:41121explanation. Avoid this term, not to confuse people.
Junio C Hamano88a3a072006-05-04 08:01:43122
Junio C Hamano36460982007-05-27 04:29:12123[[def_evil_merge]]evil merge::
124An evil merge is a <<def_merge,merge>> that introduces changes that
125do not appear in any <<def_parent,parent>>.
126
Junio C Hamano3f680f32009-11-16 02:10:54127[[def_fast_forward]]fast-forward::
Junio C Hamano3d5b41f2007-03-26 02:33:41128A fast-forward is a special type of <<def_merge,merge>> where you have a
129<<def_revision,revision>> and you are "merging" another
130<<def_branch,branch>>'s changes that happen to be a descendant of what
131you have. In such these cases, you do not make a new <<def_merge,merge>>
132<<def_commit,commit>> but instead just update to his
Junio C Hamano75485c82007-05-19 04:20:33133revision. This will happen frequently on a
Junio C Hamano97bcb482010-11-25 03:16:07134<<def_remote_tracking_branch,remote-tracking branch>> of a remote
Junio C Hamano3d5b41f2007-03-26 02:33:41135<<def_repository,repository>>.
Junio C Hamano88a3a072006-05-04 08:01:43136
Junio C Hamano3d5b41f2007-03-26 02:33:41137[[def_fetch]]fetch::
138Fetching a <<def_branch,branch>> means to get the
Junio C Hamano75485c82007-05-19 04:20:33139branch's <<def_head_ref,head ref>> from a remote
140<<def_repository,repository>>, to find out which objects are
141missing from the local <<def_object_database,object database>>,
Junio C Hamano35738e82008-01-07 07:55:46142and to get them, too. See also linkgit:git-fetch[1].
Junio C Hamano88a3a072006-05-04 08:01:43143
Junio C Hamano3d5b41f2007-03-26 02:33:41144[[def_file_system]]file system::
Junio C Hamano076ffcc2013-02-06 05:13:21145Linus Torvalds originally designed Git to be a user space file system,
Junio C Hamano3d5b41f2007-03-26 02:33:41146i.e. the infrastructure to hold files and directories. That ensured the
Junio C Hamano076ffcc2013-02-06 05:13:21147efficiency and speed of Git.
Junio C Hamano88a3a072006-05-04 08:01:43148
Junio C Hamano076ffcc2013-02-06 05:13:21149[[def_git_archive]]Git archive::
Junio C Hamano3d5b41f2007-03-26 02:33:41150Synonym for <<def_repository,repository>> (for arch people).
Junio C Hamano88a3a072006-05-04 08:01:43151
Junio C Hamano076ffcc2013-02-06 05:13:21152[[def_gitfile]]gitfile::
153A plain file `.git` at the root of a working tree that
154points at the directory that is the real repository.
155
Junio C Hamano3d5b41f2007-03-26 02:33:41156[[def_grafts]]grafts::
157Grafts enables two otherwise different lines of development to be joined
158together by recording fake ancestry information for commits. This way
Junio C Hamano076ffcc2013-02-06 05:13:21159you can make Git pretend the set of <<def_parent,parents>> a <<def_commit,commit>> has
Junio C Hamano75485c82007-05-19 04:20:33160is different from what was recorded when the commit was
Junio C Hamano3d5b41f2007-03-26 02:33:41161created. Configured via the `.git/info/grafts` file.
Junio C Hamano33db4372006-06-07 19:51:45162
Junio C Hamano3d5b41f2007-03-26 02:33:41163[[def_hash]]hash::
Junio C Hamano076ffcc2013-02-06 05:13:21164In Git's context, synonym to <<def_object_name,object name>>.
Junio C Hamano88a3a072006-05-04 08:01:43165
Junio C Hamano3d5b41f2007-03-26 02:33:41166[[def_head]]head::
Junio C Hamano36460982007-05-27 04:29:12167A <<def_ref,named reference>> to the <<def_commit,commit>> at the tip of a
Junio C Hamano360e3a12011-07-13 23:51:56168<<def_branch,branch>>. Heads are stored in a file in
169`$GIT_DIR/refs/heads/` directory, except when using packed refs. (See
Junio C Hamano35738e82008-01-07 07:55:46170linkgit:git-pack-refs[1].)
Junio C Hamano75485c82007-05-19 04:20:33171
172[[def_HEAD]]HEAD::
Junio C Hamano36460982007-05-27 04:29:12173The current <<def_branch,branch>>. In more detail: Your <<def_working_tree,
Junio C Hamano75485c82007-05-19 04:20:33174working tree>> is normally derived from the state of the tree
175referred to by HEAD. HEAD is a reference to one of the
176<<def_head,heads>> in your repository, except when using a
Junio C Hamano360e3a12011-07-13 23:51:56177<<def_detached_HEAD,detached HEAD>>, in which case it directly
178references an arbitrary commit.
Junio C Hamano88a3a072006-05-04 08:01:43179
Junio C Hamano3d5b41f2007-03-26 02:33:41180[[def_head_ref]]head ref::
Junio C Hamano75485c82007-05-19 04:20:33181A synonym for <<def_head,head>>.
Junio C Hamano88a3a072006-05-04 08:01:43182
Junio C Hamano3d5b41f2007-03-26 02:33:41183[[def_hook]]hook::
Junio C Hamano076ffcc2013-02-06 05:13:21184During the normal execution of several Git commands, call-outs are made
Junio C Hamano3d5b41f2007-03-26 02:33:41185to optional scripts that allow a developer to add functionality or
186checking. Typically, the hooks allow for a command to be pre-verified
187and potentially aborted, and allow for a post-notification after the
Junio C Hamano75485c82007-05-19 04:20:33188operation is done. The hook scripts are found in the
Junio C Hamano36460982007-05-27 04:29:12189`$GIT_DIR/hooks/` directory, and are enabled by simply
Junio C Hamano116db352008-12-17 19:48:40190removing the `.sample` suffix from the filename. In earlier versions
Junio C Hamano076ffcc2013-02-06 05:13:21191of Git you had to make them executable.
Junio C Hamano88a3a072006-05-04 08:01:43192
Junio C Hamano3d5b41f2007-03-26 02:33:41193[[def_index]]index::
194A collection of files with stat information, whose contents are stored
Junio C Hamano36460982007-05-27 04:29:12195as objects. The index is a stored version of your
196<<def_working_tree,working tree>>. Truth be told, it can also contain a second, and even
197a third version of a working tree, which are used
198when <<def_merge,merging>>.
Junio C Hamano1a4e8412005-12-27 08:17:23199
Junio C Hamano3d5b41f2007-03-26 02:33:41200[[def_index_entry]]index entry::
201The information regarding a particular file, stored in the
Junio C Hamano75485c82007-05-19 04:20:33202<<def_index,index>>. An index entry can be unmerged, if a
203<<def_merge,merge>> was started, but not yet finished (i.e. if
204the index contains multiple versions of that file).
Junio C Hamano1a4e8412005-12-27 08:17:23205
Junio C Hamano3d5b41f2007-03-26 02:33:41206[[def_master]]master::
Junio C Hamano75485c82007-05-19 04:20:33207The default development <<def_branch,branch>>. Whenever you
Junio C Hamano076ffcc2013-02-06 05:13:21208create a Git <<def_repository,repository>>, a branch named
Junio C Hamano75485c82007-05-19 04:20:33209"master" is created, and becomes the active branch. In most
210cases, this contains the local development, though that is
211purely by convention and is not required.
Junio C Hamano1a4e8412005-12-27 08:17:23212
Junio C Hamano3d5b41f2007-03-26 02:33:41213[[def_merge]]merge::
Junio C Hamano75485c82007-05-19 04:20:33214As a verb: To bring the contents of another
215<<def_branch,branch>> (possibly from an external
216<<def_repository,repository>>) into the current branch. In the
217case where the merged-in branch is from a different repository,
218this is done by first <<def_fetch,fetching>> the remote branch
219and then merging the result into the current branch. This
220combination of fetch and merge operations is called a
221<<def_pull,pull>>. Merging is performed by an automatic process
222that identifies changes made since the branches diverged, and
223then applies all those changes together. In cases where changes
224conflict, manual intervention may be required to complete the
225merge.
226+
Junio C Hamano3f680f32009-11-16 02:10:54227As a noun: unless it is a <<def_fast_forward,fast-forward>>, a
Junio C Hamano75485c82007-05-19 04:20:33228successful merge results in the creation of a new <<def_commit,commit>>
229representing the result of the merge, and having as
230<<def_parent,parents>> the tips of the merged <<def_branch,branches>>.
231This commit is referred to as a "merge commit", or sometimes just a
232"merge".
Junio C Hamano1a4e8412005-12-27 08:17:23233
Junio C Hamano3d5b41f2007-03-26 02:33:41234[[def_object]]object::
Junio C Hamano076ffcc2013-02-06 05:13:21235The unit of storage in Git. It is uniquely identified by the
Junio C Hamano3d5b41f2007-03-26 02:33:41236<<def_SHA1,SHA1>> of its contents. Consequently, an
Junio C Hamano75485c82007-05-19 04:20:33237object can not be changed.
Junio C Hamano1a4e8412005-12-27 08:17:23238
Junio C Hamano3d5b41f2007-03-26 02:33:41239[[def_object_database]]object database::
240Stores a set of "objects", and an individual <<def_object,object>> is
241identified by its <<def_object_name,object name>>. The objects usually
242live in `$GIT_DIR/objects/`.
Junio C Hamano1a4e8412005-12-27 08:17:23243
Junio C Hamano3d5b41f2007-03-26 02:33:41244[[def_object_identifier]]object identifier::
245Synonym for <<def_object_name,object name>>.
Junio C Hamano1a4e8412005-12-27 08:17:23246
Junio C Hamano3d5b41f2007-03-26 02:33:41247[[def_object_name]]object name::
248The unique identifier of an <<def_object,object>>. The <<def_hash,hash>>
Junio C Hamano75485c82007-05-19 04:20:33249of the object's contents using the Secure Hash Algorithm
Junio C Hamano3d5b41f2007-03-26 02:33:412501 and usually represented by the 40 character hexadecimal encoding of
Junio C Hamano3a702342007-12-12 21:34:02251the <<def_hash,hash>> of the object.
Junio C Hamano1a4e8412005-12-27 08:17:23252
Junio C Hamano3d5b41f2007-03-26 02:33:41253[[def_object_type]]object type::
Junio C Hamano9e1793f2008-06-02 07:31:16254One of the identifiers "<<def_commit_object,commit>>",
255"<<def_tree_object,tree>>", "<<def_tag_object,tag>>" or
256"<<def_blob_object,blob>>" describing the type of an
257<<def_object,object>>.
Junio C Hamano1a4e8412005-12-27 08:17:23258
Junio C Hamano3d5b41f2007-03-26 02:33:41259[[def_octopus]]octopus::
Junio C Hamano36460982007-05-27 04:29:12260To <<def_merge,merge>> more than two <<def_branch,branches>>. Also denotes an
Junio C Hamano3d5b41f2007-03-26 02:33:41261intelligent predator.
Junio C Hamano88a3a072006-05-04 08:01:43262
Junio C Hamano3d5b41f2007-03-26 02:33:41263[[def_origin]]origin::
264The default upstream <<def_repository,repository>>. Most projects have
265at least one upstream project which they track. By default
Junio C Hamano75485c82007-05-19 04:20:33266'origin' is used for that purpose. New upstream updates
Junio C Hamano97bcb482010-11-25 03:16:07267will be fetched into remote <<def_remote_tracking_branch,remote-tracking branches>> named
Junio C Hamanod3361ad2007-01-01 03:20:24268origin/name-of-upstream-branch, which you can see using
Junio C Hamanoea82cff2009-03-18 01:54:48269`git branch -r`.
Junio C Hamano88a3a072006-05-04 08:01:43270
Junio C Hamano3d5b41f2007-03-26 02:33:41271[[def_pack]]pack::
272A set of objects which have been compressed into one file (to save space
273or to transmit them efficiently).
Junio C Hamano88a3a072006-05-04 08:01:43274
Junio C Hamano3d5b41f2007-03-26 02:33:41275[[def_pack_index]]pack index::
Junio C Hamano88a3a072006-05-04 08:01:43276The list of identifiers, and other information, of the objects in a
Junio C Hamano3d5b41f2007-03-26 02:33:41277<<def_pack,pack>>, to assist in efficiently accessing the contents of a
Junio C Hamano75485c82007-05-19 04:20:33278pack.
Junio C Hamano1a4e8412005-12-27 08:17:23279
Junio C Hamano63c2bc92011-02-28 06:41:28280[[def_pathspec]]pathspec::
281 Pattern used to specify paths.
282+
283Pathspecs are used on the command line of "git ls-files", "git
Junio C Hamano2a294cd2011-05-23 23:06:31284ls-tree", "git add", "git grep", "git diff", "git checkout",
285and many other commands to
Junio C Hamano63c2bc92011-02-28 06:41:28286limit the scope of operations to some subset of the tree or
287worktree. See the documentation of each command for whether
288paths are relative to the current directory or toplevel. The
289pathspec syntax is as follows:
290
291* any path matches itself
292* the pathspec up to the last slash represents a
293 directory prefix. The scope of that pathspec is
294 limited to that subtree.
295* the rest of the pathspec is a pattern for the remainder
296 of the pathname. Paths relative to the directory
297 prefix will be matched against that pattern using fnmatch(3);
298 in particular, '*' and '?' _can_ match directory separators.
299+
300For example, Documentation/*.jpg will match all .jpg files
301in the Documentation subtree,
302including Documentation/chapter_1/figure_1.jpg.
303
Junio C Hamano2a294cd2011-05-23 23:06:31304+
305A pathspec that begins with a colon `:` has special meaning. In the
306short form, the leading colon `:` is followed by zero or more "magic
307signature" letters (which optionally is terminated by another colon `:`),
308and the remainder is the pattern to match against the path. The optional
309colon that terminates the "magic signature" can be omitted if the pattern
310begins with a character that cannot be a "magic signature" and is not a
311colon.
312+
313In the long form, the leading colon `:` is followed by a open
314parenthesis `(`, a comma-separated list of zero or more "magic words",
315and a close parentheses `)`, and the remainder is the pattern to match
316against the path.
317+
318The "magic signature" consists of an ASCII symbol that is not
319alphanumeric.
320+
321--
322top `/`;;
323The magic word `top` (mnemonic: `/`) makes the pattern match
324from the root of the working tree, even when you are running
325the command from inside a subdirectory.
326--
327+
328Currently only the slash `/` is recognized as the "magic signature",
329but it is envisioned that we will support more types of magic in later
Junio C Hamano076ffcc2013-02-06 05:13:21330versions of Git.
Junio C Hamano2a294cd2011-05-23 23:06:31331+
332A pathspec with only a colon means "there is no pathspec". This form
333should not be combined with other pathspec.
334
Junio C Hamano3d5b41f2007-03-26 02:33:41335[[def_parent]]parent::
336A <<def_commit_object,commit object>> contains a (possibly empty) list
337of the logical predecessor(s) in the line of development, i.e. its
338parents.
Junio C Hamano1a4e8412005-12-27 08:17:23339
Junio C Hamano3d5b41f2007-03-26 02:33:41340[[def_pickaxe]]pickaxe::
341The term <<def_pickaxe,pickaxe>> refers to an option to the diffcore
342routines that help select changes that add or delete a given text
Junio C Hamano764a6672007-10-23 01:23:31343string. With the `--pickaxe-all` option, it can be used to view the full
Junio C Hamano3d5b41f2007-03-26 02:33:41344<<def_changeset,changeset>> that introduced or removed, say, a
Junio C Hamano35738e82008-01-07 07:55:46345particular line of text. See linkgit:git-diff[1].
Junio C Hamano1a4e8412005-12-27 08:17:23346
Junio C Hamano3d5b41f2007-03-26 02:33:41347[[def_plumbing]]plumbing::
Junio C Hamano076ffcc2013-02-06 05:13:21348Cute name for <<def_core_git,core Git>>.
Junio C Hamano1a4e8412005-12-27 08:17:23349
Junio C Hamano3d5b41f2007-03-26 02:33:41350[[def_porcelain]]porcelain::
351Cute name for programs and program suites depending on
Junio C Hamano076ffcc2013-02-06 05:13:21352<<def_core_git,core Git>>, presenting a high level access to
353core Git. Porcelains expose more of a <<def_SCM,SCM>>
Junio C Hamano3d5b41f2007-03-26 02:33:41354interface than the <<def_plumbing,plumbing>>.
Junio C Hamano1a4e8412005-12-27 08:17:23355
Junio C Hamano3d5b41f2007-03-26 02:33:41356[[def_pull]]pull::
357Pulling a <<def_branch,branch>> means to <<def_fetch,fetch>> it and
Junio C Hamano35738e82008-01-07 07:55:46358<<def_merge,merge>> it. See also linkgit:git-pull[1].
Junio C Hamano1a4e8412005-12-27 08:17:23359
Junio C Hamano3d5b41f2007-03-26 02:33:41360[[def_push]]push::
Junio C Hamano75485c82007-05-19 04:20:33361Pushing a <<def_branch,branch>> means to get the branch's
Junio C Hamano3d5b41f2007-03-26 02:33:41362<<def_head_ref,head ref>> from a remote <<def_repository,repository>>,
Junio C Hamano764a6672007-10-23 01:23:31363find out if it is a direct ancestor to the branch's local
364head ref, and in that case, putting all
Junio C Hamano3d5b41f2007-03-26 02:33:41365objects, which are <<def_reachable,reachable>> from the local
Junio C Hamano75485c82007-05-19 04:20:33366head ref, and which are missing from the remote
367repository, into the remote
Junio C Hamano3d5b41f2007-03-26 02:33:41368<<def_object_database,object database>>, and updating the remote
Junio C Hamano75485c82007-05-19 04:20:33369head ref. If the remote <<def_head,head>> is not an
370ancestor to the local head, the push fails.
Junio C Hamano1a4e8412005-12-27 08:17:23371
Junio C Hamano3d5b41f2007-03-26 02:33:41372[[def_reachable]]reachable::
373All of the ancestors of a given <<def_commit,commit>> are said to be
Junio C Hamano75485c82007-05-19 04:20:33374"reachable" from that commit. More
375generally, one <<def_object,object>> is reachable from
Junio C Hamano3d5b41f2007-03-26 02:33:41376another if we can reach the one from the other by a <<def_chain,chain>>
377that follows <<def_tag,tags>> to whatever they tag,
378<<def_commit_object,commits>> to their parents or trees, and
379<<def_tree_object,trees>> to the trees or <<def_blob_object,blobs>>
380that they contain.
Junio C Hamanof3e80c02006-01-11 00:54:55381
Junio C Hamano3d5b41f2007-03-26 02:33:41382[[def_rebase]]rebase::
383To reapply a series of changes from a <<def_branch,branch>> to a
384different base, and reset the <<def_head,head>> of that branch
385to the result.
Junio C Hamanof3e80c02006-01-11 00:54:55386
Junio C Hamano3d5b41f2007-03-26 02:33:41387[[def_ref]]ref::
388A 40-byte hex representation of a <<def_SHA1,SHA1>> or a name that
Junio C Hamano360e3a12011-07-13 23:51:56389denotes a particular <<def_object,object>>. They may be stored in
390a file under `$GIT_DIR/refs/` directory, or
391in the `$GIT_DIR/packed-refs` file.
Junio C Hamano1a4e8412005-12-27 08:17:23392
Junio C Hamanobb0f4042007-07-04 06:41:40393[[def_reflog]]reflog::
394A reflog shows the local "history" of a ref. In other words,
395it can tell you what the 3rd last revision in _this_ repository
396was, and what was the current state in _this_ repository,
Junio C Hamano35738e82008-01-07 07:55:46397yesterday 9:14pm. See linkgit:git-reflog[1] for details.
Junio C Hamanobb0f4042007-07-04 06:41:40398
Junio C Hamano3d5b41f2007-03-26 02:33:41399[[def_refspec]]refspec::
Junio C Hamano36460982007-05-27 04:29:12400A "refspec" is used by <<def_fetch,fetch>> and
Junio C Hamano75485c82007-05-19 04:20:33401<<def_push,push>> to describe the mapping between remote
402<<def_ref,ref>> and local ref. They are combined with a colon in
403the format <src>:<dst>, preceded by an optional plus sign, +.
404For example: `git fetch $URL
405refs/heads/master:refs/heads/origin` means "grab the master
406<<def_branch,branch>> <<def_head,head>> from the $URL and store
407it as my origin branch head". And `git push
408$URL refs/heads/master:refs/heads/to-upstream` means "publish my
409master branch head as to-upstream branch at $URL". See also
Junio C Hamano35738e82008-01-07 07:55:46410linkgit:git-push[1].
Junio C Hamano88a3a072006-05-04 08:01:43411
Junio C Hamano97bcb482010-11-25 03:16:07412[[def_remote_tracking_branch]]remote-tracking branch::
Junio C Hamano076ffcc2013-02-06 05:13:21413A regular Git <<def_branch,branch>> that is used to follow changes from
Junio C Hamano97bcb482010-11-25 03:16:07414another <<def_repository,repository>>. A remote-tracking
415branch should not contain direct modifications or have local commits
416made to it. A remote-tracking branch can usually be
417identified as the right-hand-side <<def_ref,ref>> in a Pull:
418<<def_refspec,refspec>>.
419
Junio C Hamano3d5b41f2007-03-26 02:33:41420[[def_repository]]repository::
Junio C Hamano36460982007-05-27 04:29:12421A collection of <<def_ref,refs>> together with an
Junio C Hamano75485c82007-05-19 04:20:33422<<def_object_database,object database>> containing all objects
423which are <<def_reachable,reachable>> from the refs, possibly
Junio C Hamano36460982007-05-27 04:29:12424accompanied by meta data from one or more <<def_porcelain,porcelains>>. A
425repository can share an object database with other repositories
426via <<def_alternate_object_database,alternates mechanism>>.
Junio C Hamano88a3a072006-05-04 08:01:43427
Junio C Hamano3d5b41f2007-03-26 02:33:41428[[def_resolve]]resolve::
429The action of fixing up manually what a failed automatic
430<<def_merge,merge>> left behind.
Junio C Hamano88a3a072006-05-04 08:01:43431
Junio C Hamano3d5b41f2007-03-26 02:33:41432[[def_revision]]revision::
433A particular state of files and directories which was stored in the
434<<def_object_database,object database>>. It is referenced by a
435<<def_commit_object,commit object>>.
Junio C Hamano88a3a072006-05-04 08:01:43436
Junio C Hamano3d5b41f2007-03-26 02:33:41437[[def_rewind]]rewind::
438To throw away part of the development, i.e. to assign the
439<<def_head,head>> to an earlier <<def_revision,revision>>.
Junio C Hamano88a3a072006-05-04 08:01:43440
Junio C Hamano3d5b41f2007-03-26 02:33:41441[[def_SCM]]SCM::
Junio C Hamano88a3a072006-05-04 08:01:43442Source code management (tool).
443
Junio C Hamano3d5b41f2007-03-26 02:33:41444[[def_SHA1]]SHA1::
445Synonym for <<def_object_name,object name>>.
Junio C Hamano88a3a072006-05-04 08:01:43446
Junio C Hamano3d5b41f2007-03-26 02:33:41447[[def_shallow_repository]]shallow repository::
Junio C Hamano36460982007-05-27 04:29:12448A shallow <<def_repository,repository>> has an incomplete
449history some of whose <<def_commit,commits>> have <<def_parent,parents>> cauterized away (in other
Junio C Hamano076ffcc2013-02-06 05:13:21450words, Git is told to pretend that these commits do not have the
Junio C Hamano3d5b41f2007-03-26 02:33:41451parents, even though they are recorded in the <<def_commit_object,commit
452object>>). This is sometimes useful when you are interested only in the
453recent history of a project even though the real history recorded in the
Junio C Hamano75485c82007-05-19 04:20:33454upstream is much larger. A shallow repository
Junio C Hamano35738e82008-01-07 07:55:46455is created by giving the `--depth` option to linkgit:git-clone[1], and
456its history can be later deepened with linkgit:git-fetch[1].
Junio C Hamano4f9a6052007-01-17 20:25:16457
Junio C Hamano3d5b41f2007-03-26 02:33:41458[[def_symref]]symref::
Junio C Hamano75485c82007-05-19 04:20:33459Symbolic reference: instead of containing the <<def_SHA1,SHA1>>
460id itself, it is of the format 'ref: refs/some/thing' and when
461referenced, it recursively dereferences to this reference.
462'<<def_HEAD,HEAD>>' is a prime example of a symref. Symbolic
Junio C Hamano35738e82008-01-07 07:55:46463references are manipulated with the linkgit:git-symbolic-ref[1]
Junio C Hamano75485c82007-05-19 04:20:33464command.
Junio C Hamano3a971022006-11-18 22:17:58465
Junio C Hamano3d5b41f2007-03-26 02:33:41466[[def_tag]]tag::
Junio C Hamano360e3a12011-07-13 23:51:56467A <<def_ref,ref>> under `refs/tags/` namespace that points to an
468object of an arbitrary type (typically a tag points to either a
469<<def_tag_object,tag>> or a <<def_commit_object,commit object>>).
470In contrast to a <<def_head,head>>, a tag is not updated by
Junio C Hamano076ffcc2013-02-06 05:13:21471the `commit` command. A Git tag has nothing to do with a Lisp
Junio C Hamano360e3a12011-07-13 23:51:56472tag (which would be called an <<def_object_type,object type>>
Junio C Hamano076ffcc2013-02-06 05:13:21473in Git's context). A tag is most typically used to mark a particular
Junio C Hamano360e3a12011-07-13 23:51:56474point in the commit ancestry <<def_chain,chain>>.
Junio C Hamano88a3a072006-05-04 08:01:43475
Junio C Hamano3d5b41f2007-03-26 02:33:41476[[def_tag_object]]tag object::
477An <<def_object,object>> containing a <<def_ref,ref>> pointing to
Junio C Hamano75485c82007-05-19 04:20:33478another object, which can contain a message just like a
Junio C Hamano3d5b41f2007-03-26 02:33:41479<<def_commit_object,commit object>>. It can also contain a (PGP)
Junio C Hamano36460982007-05-27 04:29:12480signature, in which case it is called a "signed tag object".
Junio C Hamano88a3a072006-05-04 08:01:43481
Junio C Hamano3d5b41f2007-03-26 02:33:41482[[def_topic_branch]]topic branch::
Junio C Hamano076ffcc2013-02-06 05:13:21483A regular Git <<def_branch,branch>> that is used by a developer to
Junio C Hamano3d5b41f2007-03-26 02:33:41484identify a conceptual line of development. Since branches are very easy
485and inexpensive, it is often desirable to have several small branches
486that each contain very well defined concepts or small incremental yet
487related changes.
Junio C Hamano88a3a072006-05-04 08:01:43488
Junio C Hamano3d5b41f2007-03-26 02:33:41489[[def_tree]]tree::
490Either a <<def_working_tree,working tree>>, or a <<def_tree_object,tree
Junio C Hamano36460982007-05-27 04:29:12491object>> together with the dependent <<def_blob_object,blob>> and tree objects
Junio C Hamano75485c82007-05-19 04:20:33492(i.e. a stored representation of a working tree).
Junio C Hamano1a4e8412005-12-27 08:17:23493
Junio C Hamano3d5b41f2007-03-26 02:33:41494[[def_tree_object]]tree object::
495An <<def_object,object>> containing a list of file names and modes along
496with refs to the associated blob and/or tree objects. A
497<<def_tree,tree>> is equivalent to a <<def_directory,directory>>.
Junio C Hamano1a4e8412005-12-27 08:17:23498
Junio C Hamano3d5b41f2007-03-26 02:33:41499[[def_tree-ish]]tree-ish::
500A <<def_ref,ref>> pointing to either a <<def_commit_object,commit
501object>>, a <<def_tree_object,tree object>>, or a <<def_tag_object,tag
Junio C Hamano75485c82007-05-19 04:20:33502object>> pointing to a tag or commit or tree object.
Junio C Hamano1a4e8412005-12-27 08:17:23503
Junio C Hamano3d5b41f2007-03-26 02:33:41504[[def_unmerged_index]]unmerged index::
505An <<def_index,index>> which contains unmerged
506<<def_index_entry,index entries>>.
Junio C Hamano1a4e8412005-12-27 08:17:23507
Junio C Hamano3d5b41f2007-03-26 02:33:41508[[def_unreachable_object]]unreachable object::
509An <<def_object,object>> which is not <<def_reachable,reachable>> from a
510<<def_branch,branch>>, <<def_tag,tag>>, or any other reference.
Junio C Hamanoaa83a7d2007-03-05 02:37:29511
Junio C Hamano98e32c32009-04-13 02:39:53512[[def_upstream_branch]]upstream branch::
513The default <<def_branch,branch>> that is merged into the branch in
514question (or the branch in question is rebased onto). It is configured
515via branch.<name>.remote and branch.<name>.merge. If the upstream branch
516of 'A' is 'origin/B' sometimes we say "'A' is tracking 'origin/B'".
517
Junio C Hamano3d5b41f2007-03-26 02:33:41518[[def_working_tree]]working tree::
Junio C Hamanoc0e55e72009-10-10 00:56:29519The tree of actual checked out files. The working tree normally
520contains the contents of the <<def_HEAD,HEAD>> commit's tree,
521plus any local changes that you have made but not yet committed.