summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 23e8673)
raw | patch | inline | side by side (parent: 23e8673)
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | |
Thu, 25 Aug 2005 14:24:13 +0000 (16:24 +0200) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Fri, 26 Aug 2005 18:11:48 +0000 (11:11 -0700) |
Describe a DAG and octopus, and change wording of tree object.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Documentation/glossary.txt | patch | blob | history |
index 7456cffd3306f83ce466a5a4afbdadc4fe980fb1..a069b7bb0cfbdacfc0ac2dd2183981b806792805 100644 (file)
tree object::
An object containing a list of file names and modes along with refs
- to the associated blob and/or tree objects. A tree object is
- equivalent to a directory.
+ to the associated blob and/or tree objects. A tree is equivalent
+ to a directory.
tree::
Either a working tree, or a tree object together with the
dependent blob and tree objects (i.e. a stored representation
of a working tree).
+DAG::
+ Directed acyclic graph. The commit objects form a directed acyclic
+ graph, because they have parents (directed), and the graph of commit
+ objects is acyclic (there is no chain which begins and ends with the
+ same object).
+
index::
A collection of files with stat information, whose contents are
stored as objects. The cache is a stored version of your working
merge uses heuristics to accomplish that. Evidently, an automatic
merge can fail.
+octopus::
+ To merge more than two branches. Also denotes an intelligent
+ predator.
+
resolve::
The action of fixing up manually what a failed automatic merge
left behind.