glossary: stop generating automatically

The sort_glossary.pl script sorts the glossary, checks for duplicates,
and automatically adds cross-references.

But it's not so hard to do all that by hand, and sometimes the automatic
cross-references are a little wrong; so let's run the script one last
time and check in its output.

Note: to make the output fit better into the user manual I also deleted
the acknowledgements at the end, which was maybe a little rude; feel
free to object and I can find a different solution.

Cc: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: "J. Bruce Fields" <bfields@citi.umich.edu>
This commit is contained in:
J. Bruce Fields 2007-03-18 17:02:37 -04:00
Родитель 06e7ea3787
Коммит f562e6f316
4 изменённых файлов: 332 добавлений и 368 удалений

Просмотреть файл

@ -16,8 +16,9 @@ ARTICLES += repository-layout
ARTICLES += hooks ARTICLES += hooks
ARTICLES += everyday ARTICLES += everyday
ARTICLES += git-tools ARTICLES += git-tools
ARTICLES += glossary
# with their own formatting rules. # with their own formatting rules.
SP_ARTICLES = glossary howto/revert-branch-rebase user-manual SP_ARTICLES = howto/revert-branch-rebase user-manual
DOC_HTML += $(patsubst %,%.html,$(ARTICLES) $(SP_ARTICLES)) DOC_HTML += $(patsubst %,%.html,$(ARTICLES) $(SP_ARTICLES))
@ -111,11 +112,6 @@ XSLTOPTS = --xinclude --stringparam html.stylesheet docbook-xsl.css
user-manual.html: user-manual.xml user-manual.html: user-manual.xml
xsltproc $(XSLTOPTS) -o $@ $(XSLT) $< xsltproc $(XSLTOPTS) -o $@ $(XSLT) $<
glossary.html : glossary.txt sort_glossary.pl
cat $< | \
perl sort_glossary.pl | \
$(ASCIIDOC) -b xhtml11 - > glossary.html
howto-index.txt: howto-index.sh $(wildcard howto/*.txt) howto-index.txt: howto-index.sh $(wildcard howto/*.txt)
rm -f $@+ $@ rm -f $@+ $@
sh ./howto-index.sh $(wildcard howto/*.txt) >$@+ sh ./howto-index.sh $(wildcard howto/*.txt) >$@+

Просмотреть файл

@ -1,365 +1,405 @@
alternate object database:: GIT Glossary
Via the alternates mechanism, a repository can inherit part of its ============
object database from another object database, which is called
"alternate".
bare repository:: [[def_alternate_object_database]]alternate object database::
A bare repository is normally an appropriately named Via the alternates mechanism, a <<def_repository,repository>> can
directory with a `.git` suffix that does not have a inherit part of its <<def_object_database,object database>> from another
locally checked-out copy of any of the files under revision <<def_object_database,object database>>, which is called "alternate".
control. That is, all of the `git` administrative and
control files that would normally be present in the
hidden `.git` sub-directory are directly present in
the `repository.git` directory instead, and no other files
are present and checked out. Usually publishers of public
repositories make bare repositories available.
blob object:: [[def_bare_repository]]bare repository::
Untyped object, e.g. the contents of a file. A <<def_bare_repository,bare repository>> is normally an appropriately
named <<def_directory,directory>> with a `.git` suffix that does not
have a locally checked-out copy of any of the files under
<<def_revision,revision>> control. That is, all of the `git`
administrative and control files that would normally be present in the
hidden `.git` sub-directory are directly present in the
`<<def_repository,repository>>.git` <<def_directory,directory>> instead,
and no other files are present and checked out. Usually publishers of
public repositories make bare repositories available.
branch:: [[def_blob_object]]blob object::
A non-cyclical graph of revisions, i.e. the complete history of Untyped <<def_object,object>>, e.g. the contents of a file.
a particular revision, which is called the branch head. The
branch heads are stored in `$GIT_DIR/refs/heads/`.
cache:: [[def_branch]]branch::
Obsolete for: index. A non-cyclical graph of revisions, i.e. the complete history of a
particular <<def_revision,revision>>, which is called the
<<def_branch,branch>> <<def_head,head>>. The <<def_branch,branch>> heads
are stored in `$GIT_DIR/refs/heads/`.
chain:: [[def_cache]]cache::
A list of objects, where each object in the list contains a Obsolete for: <<def_index,index>>.
reference to its successor (for example, the successor of a commit
could be one of its parents).
changeset:: [[def_chain]]chain::
BitKeeper/cvsps speak for "commit". Since git does not store A list of objects, where each <<def_object,object>> in the list contains
changes, but states, it really does not make sense to use a reference to its successor (for example, the successor of a
the term "changesets" with git. <<def_commit,commit>> could be one of its parents).
checkout:: [[def_changeset]]changeset::
The action of updating the working tree to a revision which was BitKeeper/cvsps speak for "<<def_commit,commit>>". Since git does not
stored in the object database. store changes, but states, it really does not make sense to use the term
"changesets" with git.
cherry-picking:: [[def_checkout]]checkout::
In SCM jargon, "cherry pick" means to choose a subset of The action of updating the <<def_working_tree,working tree>> to a
changes out of a series of changes (typically commits) <<def_revision,revision>> which was stored in the
and record them as a new series of changes on top of <<def_object_database,object database>>.
different codebase. In GIT, this is performed by
"git cherry-pick" command to extract the change
introduced by an existing commit and to record it based
on the tip of the current branch as a new commit.
clean:: [[def_cherry-picking]]cherry-picking::
A working tree is clean, if it corresponds to the revision In <<def_SCM,SCM>> jargon, "cherry pick" means to choose a subset of
referenced by the current head. Also see "dirty". changes out of a series of changes (typically commits) and record them
as a new series of changes on top of different codebase. In GIT, this is
performed by "git cherry-pick" command to extract the change introduced
by an existing <<def_commit,commit>> and to record it based on the tip
of the current <<def_branch,branch>> as a new <<def_commit,commit>>.
commit:: [[def_clean]]clean::
As a verb: The action of storing the current state of the index in the A <<def_working_tree,working tree>> is <<def_clean,clean>>, if it
object database. The result is a revision. corresponds to the <<def_revision,revision>> referenced by the current
As a noun: Short hand for commit object. <<def_head,head>>. Also see "<<def_dirty,dirty>>".
commit object:: [[def_commit]]commit::
An object which contains the information about a particular As a verb: The action of storing the current state of the
revision, such as parents, committer, author, date and the <<def_index,index>> in the <<def_object_database,object database>>. The
tree object which corresponds to the top directory of the result is a <<def_revision,revision>>. As a noun: Short hand for
stored revision. <<def_commit_object,commit object>>.
core git:: [[def_commit_object]]commit object::
Fundamental data structures and utilities of git. Exposes only An <<def_object,object>> which contains the information about a
limited source code management tools. particular <<def_revision,revision>>, such as parents, committer,
author, date and the <<def_tree_object,tree object>> which corresponds
to the top <<def_directory,directory>> of the stored
<<def_revision,revision>>.
DAG:: [[def_core_git]]core git::
Directed acyclic graph. The commit objects form a directed acyclic Fundamental data structures and utilities of git. Exposes only limited
graph, because they have parents (directed), and the graph of commit source code management tools.
objects is acyclic (there is no chain which begins and ends with the
same object).
dangling object:: [[def_DAG]]DAG::
An unreachable object which is not reachable even from other Directed acyclic graph. The <<def_commit,commit>> objects form a
unreachable objects; a dangling object has no references to it directed acyclic graph, because they have parents (directed), and the
from any reference or object in the repository. graph of <<def_commit,commit>> objects is acyclic (there is no
<<def_chain,chain>> which begins and ends with the same
<<def_object,object>>).
dircache:: [[def_dangling_object]]dangling object::
An <<def_unreachable_object,unreachable object>> which is not
<<def_reachable,reachable>> even from other unreachable objects; a
<<def_dangling_object,dangling object>> has no references to it from any
reference or <<def_object,object>> in the <<def_repository,repository>>.
[[def_dircache]]dircache::
You are *waaaaay* behind. You are *waaaaay* behind.
dirty:: [[def_directory]]directory::
A working tree is said to be dirty if it contains modifications
which have not been committed to the current branch.
directory::
The list you get with "ls" :-) The list you get with "ls" :-)
ent:: [[def_dirty]]dirty::
Favorite synonym to "tree-ish" by some total geeks. See A <<def_working_tree,working tree>> is said to be <<def_dirty,dirty>> if
it contains modifications which have not been committed to the current
<<def_branch,branch>>.
[[def_ent]]ent::
Favorite synonym to "<<def_tree-ish,tree-ish>>" by some total geeks. See
`http://en.wikipedia.org/wiki/Ent_(Middle-earth)` for an in-depth `http://en.wikipedia.org/wiki/Ent_(Middle-earth)` for an in-depth
explanation. Avoid this term, not to confuse people. explanation. Avoid this term, not to confuse people.
fast forward:: [[def_fast_forward]]fast forward::
A fast-forward is a special type of merge where you have A fast-forward is a special type of <<def_merge,merge>> where you have a
a revision and you are "merging" another branch's changes <<def_revision,revision>> and you are "merging" another
that happen to be a descendant of what you have. <<def_branch,branch>>'s changes that happen to be a descendant of what
In such these cases, you do not make a new merge commit but you have. In such these cases, you do not make a new <<def_merge,merge>>
instead just update to his revision. This will happen <<def_commit,commit>> but instead just update to his
frequently on a tracking branch of a remote repository. <<def_revision,revision>>. This will happen frequently on a
<<def_tracking_branch,tracking branch>> of a remote
<<def_repository,repository>>.
fetch:: [[def_fetch]]fetch::
Fetching a branch means to get the branch's head ref from a Fetching a <<def_branch,branch>> means to get the
remote repository, to find out which objects are missing from <<def_branch,branch>>'s <<def_head_ref,head ref>> from a remote
the local object database, and to get them, too. <<def_repository,repository>>, to find out which objects are missing
from the local <<def_object_database,object database>>, and to get them,
too.
file system:: [[def_file_system]]file system::
Linus Torvalds originally designed git to be a user space file Linus Torvalds originally designed git to be a user space file system,
system, i.e. the infrastructure to hold files and directories. i.e. the infrastructure to hold files and directories. That ensured the
That ensured the efficiency and speed of git. efficiency and speed of git.
git archive:: [[def_git_archive]]git archive::
Synonym for repository (for arch people). Synonym for <<def_repository,repository>> (for arch people).
grafts:: [[def_grafts]]grafts::
Grafts enables two otherwise different lines of development to be Grafts enables two otherwise different lines of development to be joined
joined together by recording fake ancestry information for commits. together by recording fake ancestry information for commits. This way
This way you can make git pretend the set of parents a commit you can make git pretend the set of parents a <<def_commit,commit>> has
has is different from what was recorded when the commit was created. is different from what was recorded when the <<def_commit,commit>> was
Configured via the `.git/info/grafts` file. created. Configured via the `.git/info/<<def_grafts,grafts>>` file.
hash:: [[def_hash]]hash::
In git's context, synonym to object name. In git's context, synonym to <<def_object_name,object name>>.
head:: [[def_head]]head::
The top of a branch. It contains a ref to the corresponding The top of a <<def_branch,branch>>. It contains a <<def_ref,ref>> to the
commit object. corresponding <<def_commit_object,commit object>>.
head ref:: [[def_head_ref]]head ref::
A ref pointing to a head. Often, this is abbreviated to "head". A <<def_ref,ref>> pointing to a <<def_head,head>>. Often, this is
Head refs are stored in `$GIT_DIR/refs/heads/`. abbreviated to "<<def_head,head>>". Head refs are stored in
`$GIT_DIR/refs/heads/`.
hook:: [[def_hook]]hook::
During the normal execution of several git commands, During the normal execution of several git commands, call-outs are made
call-outs are made to optional scripts that allow to optional scripts that allow a developer to add functionality or
a developer to add functionality or checking. checking. Typically, the hooks allow for a command to be pre-verified
Typically, the hooks allow for a command to be pre-verified and potentially aborted, and allow for a post-notification after the
and potentially aborted, and allow for a post-notification operation is done. The <<def_hook,hook>> scripts are found in the
after the operation is done. `$GIT_DIR/hooks/` <<def_directory,directory>>, and are enabled by simply
The hook scripts are found in the `$GIT_DIR/hooks/` directory, making them executable.
and are enabled by simply making them executable.
index:: [[def_index]]index::
A collection of files with stat information, whose contents are A collection of files with stat information, whose contents are stored
stored as objects. The index is a stored version of your working as objects. The <<def_index,index>> is a stored version of your working
tree. Truth be told, it can also contain a second, and even a third <<def_tree,tree>>. Truth be told, it can also contain a second, and even
version of a working tree, which are used when merging. a third version of a <<def_working_tree,working tree>>, which are used
when merging.
index entry:: [[def_index_entry]]index entry::
The information regarding a particular file, stored in the index. The information regarding a particular file, stored in the
An index entry can be unmerged, if a merge was started, but not <<def_index,index>>. An <<def_index_entry,index entry>> can be unmerged,
yet finished (i.e. if the index contains multiple versions of if a <<def_merge,merge>> was started, but not yet finished (i.e. if the
that file). <<def_index,index>> contains multiple versions of that file).
master:: [[def_master]]master::
The default development branch. Whenever you create a git The default development <<def_branch,branch>>. Whenever you create a git
repository, a branch named "master" is created, and becomes <<def_repository,repository>>, a <<def_branch,branch>> named
the active branch. In most cases, this contains the local "<<def_master,master>>" is created, and becomes the active
<<def_branch,branch>>. In most cases, this contains the local
development, though that is purely conventional and not required. development, though that is purely conventional and not required.
merge:: [[def_merge]]merge::
To merge branches means to try to accumulate the changes since a To <<def_merge,merge>> branches means to try to accumulate the changes
common ancestor and apply them to the first branch. An automatic since a common ancestor and apply them to the first
merge uses heuristics to accomplish that. Evidently, an automatic <<def_branch,branch>>. An automatic <<def_merge,merge>> uses heuristics
merge can fail. to accomplish that. Evidently, an automatic <<def_merge,merge>> can
fail.
object:: [[def_object]]object::
The unit of storage in git. It is uniquely identified by The unit of storage in git. It is uniquely identified by the
the SHA1 of its contents. Consequently, an object can not <<def_SHA1,SHA1>> of its contents. Consequently, an
be changed. <<def_object,object>> can not be changed.
object database:: [[def_object_database]]object database::
Stores a set of "objects", and an individual object is identified Stores a set of "objects", and an individual <<def_object,object>> is
by its object name. The objects usually live in `$GIT_DIR/objects/`. identified by its <<def_object_name,object name>>. The objects usually
live in `$GIT_DIR/objects/`.
object identifier:: [[def_object_identifier]]object identifier::
Synonym for object name. Synonym for <<def_object_name,object name>>.
object name:: [[def_object_name]]object name::
The unique identifier of an object. The hash of the object's contents The unique identifier of an <<def_object,object>>. The <<def_hash,hash>>
using the Secure Hash Algorithm 1 and usually represented by the 40 of the <<def_object,object>>'s contents using the Secure Hash Algorithm
character hexadecimal encoding of the hash of the object (possibly 1 and usually represented by the 40 character hexadecimal encoding of
followed by a white space). the <<def_hash,hash>> of the <<def_object,object>> (possibly followed by
a white space).
object type:: [[def_object_type]]object type::
One of the identifiers "commit","tree","tag" and "blob" describing One of the identifiers
the type of an object. "<<def_commit,commit>>","<<def_tree,tree>>","<<def_tag,tag>>" and "blob"
describing the type of an <<def_object,object>>.
octopus:: [[def_octopus]]octopus::
To merge more than two branches. Also denotes an intelligent To <<def_merge,merge>> more than two branches. Also denotes an
predator. intelligent predator.
origin:: [[def_origin]]origin::
The default upstream repository. Most projects have at The default upstream <<def_repository,repository>>. Most projects have
least one upstream project which they track. By default at least one upstream project which they track. By default
'origin' is used for that purpose. New upstream updates '<<def_origin,origin>>' is used for that purpose. New upstream updates
will be fetched into remote tracking branches named will be fetched into remote tracking branches named
origin/name-of-upstream-branch, which you can see using <<def_origin,origin>>/name-of-upstream-branch, which you can see using
"git branch -r". "git <<def_branch,branch>> -r".
pack:: [[def_pack]]pack::
A set of objects which have been compressed into one file (to save A set of objects which have been compressed into one file (to save space
space or to transmit them efficiently). or to transmit them efficiently).
pack index:: [[def_pack_index]]pack index::
The list of identifiers, and other information, of the objects in a The list of identifiers, and other information, of the objects in a
pack, to assist in efficiently accessing the contents of a pack. <<def_pack,pack>>, to assist in efficiently accessing the contents of a
<<def_pack,pack>>.
parent:: [[def_parent]]parent::
A commit object contains a (possibly empty) list of the logical A <<def_commit_object,commit object>> contains a (possibly empty) list
predecessor(s) in the line of development, i.e. its parents. of the logical predecessor(s) in the line of development, i.e. its
parents.
pickaxe:: [[def_pickaxe]]pickaxe::
The term pickaxe refers to an option to the diffcore routines The term <<def_pickaxe,pickaxe>> refers to an option to the diffcore
that help select changes that add or delete a given text string. routines that help select changes that add or delete a given text
With the --pickaxe-all option, it can be used to view the string. With the --pickaxe-all option, it can be used to view the full
full changeset that introduced or removed, say, a particular <<def_changeset,changeset>> that introduced or removed, say, a
line of text. See gitlink:git-diff[1]. particular line of text. See gitlink:git-diff[1].
plumbing:: [[def_plumbing]]plumbing::
Cute name for core git. Cute name for <<def_core_git,core git>>.
porcelain:: [[def_porcelain]]porcelain::
Cute name for programs and program suites depending on core git, Cute name for programs and program suites depending on
presenting a high level access to core git. Porcelains expose <<def_core_git,core git>>, presenting a high level access to
more of a SCM interface than the plumbing. <<def_core_git,core git>>. Porcelains expose more of a <<def_SCM,SCM>>
interface than the <<def_plumbing,plumbing>>.
pull:: [[def_pull]]pull::
Pulling a branch means to fetch it and merge it. Pulling a <<def_branch,branch>> means to <<def_fetch,fetch>> it and
<<def_merge,merge>> it.
push:: [[def_push]]push::
Pushing a branch means to get the branch's head ref from a remote Pushing a <<def_branch,branch>> means to get the <<def_branch,branch>>'s
repository, find out if it is an ancestor to the branch's local <<def_head_ref,head ref>> from a remote <<def_repository,repository>>,
head ref is a direct, and in that case, putting all objects, which find out if it is an ancestor to the <<def_branch,branch>>'s local
are reachable from the local head ref, and which are missing from <<def_head_ref,head ref>> is a direct, and in that case, putting all
the remote repository, into the remote object database, and updating objects, which are <<def_reachable,reachable>> from the local
the remote head ref. If the remote head is not an ancestor to the <<def_head_ref,head ref>>, and which are missing from the remote
local head, the push fails. <<def_repository,repository>>, into the remote
<<def_object_database,object database>>, and updating the remote
<<def_head_ref,head ref>>. If the remote <<def_head,head>> is not an
ancestor to the local <<def_head,head>>, the <<def_push,push>> fails.
reachable:: [[def_reachable]]reachable::
All of the ancestors of a given commit are said to be reachable from All of the ancestors of a given <<def_commit,commit>> are said to be
that commit. More generally, one object is reachable from another if <<def_reachable,reachable>> from that <<def_commit,commit>>. More
we can reach the one from the other by a chain that follows tags to generally, one <<def_object,object>> is <<def_reachable,reachable>> from
whatever they tag, commits to their parents or trees, and trees to the another if we can reach the one from the other by a <<def_chain,chain>>
trees or blobs that they contain. that follows tags to whatever they <<def_tag,tag>>, commits to their
parents or trees, and trees to the trees or blobs that they contain.
rebase:: [[def_rebase]]rebase::
To clean a branch by starting from the head of the main line of To <<def_clean,clean>> a <<def_branch,branch>> by starting from the
development ("master"), and reapply the (possibly cherry-picked) <<def_head,head>> of the main line of development
changes from that branch. ("<<def_master,master>>"), and reapply the (possibly cherry-picked)
changes from that <<def_branch,branch>>.
ref:: [[def_ref]]ref::
A 40-byte hex representation of a SHA1 or a name that denotes A 40-byte hex representation of a <<def_SHA1,SHA1>> or a name that
a particular object. These may be stored in `$GIT_DIR/refs/`. denotes a particular <<def_object,object>>. These may be stored in
`$GIT_DIR/refs/`.
refspec:: [[def_refspec]]refspec::
A refspec is used by fetch and push to describe the mapping A <<def_refspec,refspec>> is used by <<def_fetch,fetch>> and
between remote ref and local ref. They are combined with <<def_push,push>> to describe the mapping between remote <<def_ref,ref>>
a colon in the format <src>:<dst>, preceded by an optional and local <<def_ref,ref>>. They are combined with a colon in the format
plus sign, +. For example: <src>:<dst>, preceded by an optional plus sign, +. For example: `git
`git fetch $URL refs/heads/master:refs/heads/origin` <<def_fetch,fetch>> $URL
means "grab the master branch head from the $URL and store refs/heads/<<def_master,master>>:refs/heads/<<def_origin,origin>>` means
it as my origin branch head". "grab the <<def_master,master>> <<def_branch,branch>> <<def_head,head>>
And `git push $URL refs/heads/master:refs/heads/to-upstream` from the $URL and store it as my <<def_origin,origin>>
means "publish my master branch head as to-upstream branch <<def_branch,branch>> <<def_head,head>>". And `git <<def_push,push>>
at $URL". See also gitlink:git-push[1] $URL refs/heads/<<def_master,master>>:refs/heads/to-upstream` means
"publish my <<def_master,master>> <<def_branch,branch>>
<<def_head,head>> as to-upstream <<def_branch,branch>> at $URL". See
also gitlink:git-push[1]
repository:: [[def_repository]]repository::
A collection of refs together with an object database containing A collection of refs together with an <<def_object_database,object
all objects, which are reachable from the refs, possibly accompanied database>> containing all objects, which are <<def_reachable,reachable>>
by meta data from one or more porcelains. A repository can from the refs, possibly accompanied by meta data from one or more
share an object database with other repositories. porcelains. A <<def_repository,repository>> can share an
<<def_object_database,object database>> with other repositories.
resolve:: [[def_resolve]]resolve::
The action of fixing up manually what a failed automatic merge The action of fixing up manually what a failed automatic
left behind. <<def_merge,merge>> left behind.
revision:: [[def_revision]]revision::
A particular state of files and directories which was stored in A particular state of files and directories which was stored in the
the object database. It is referenced by a commit object. <<def_object_database,object database>>. It is referenced by a
<<def_commit_object,commit object>>.
rewind:: [[def_rewind]]rewind::
To throw away part of the development, i.e. to assign the head to To throw away part of the development, i.e. to assign the
an earlier revision. <<def_head,head>> to an earlier <<def_revision,revision>>.
SCM:: [[def_SCM]]SCM::
Source code management (tool). Source code management (tool).
SHA1:: [[def_SHA1]]SHA1::
Synonym for object name. Synonym for <<def_object_name,object name>>.
shallow repository:: [[def_shallow_repository]]shallow repository::
A shallow repository has an incomplete history some of A <<def_shallow_repository,shallow repository>> has an incomplete
whose commits have parents cauterized away (in other history some of whose commits have parents cauterized away (in other
words, git is told to pretend that these commits do not words, git is told to pretend that these commits do not have the
have the parents, even though they are recorded in the parents, even though they are recorded in the <<def_commit_object,commit
commit object). This is sometimes useful when you are object>>). This is sometimes useful when you are interested only in the
interested only in the recent history of a project even recent history of a project even though the real history recorded in the
though the real history recorded in the upstream is upstream is much larger. A <<def_shallow_repository,shallow repository>>
much larger. A shallow repository is created by giving is created by giving `--depth` option to gitlink:git-clone[1], and its
`--depth` option to gitlink:git-clone[1], and its
history can be later deepened with gitlink:git-fetch[1]. history can be later deepened with gitlink:git-fetch[1].
symref:: [[def_symref]]symref::
Symbolic reference: instead of containing the SHA1 id itself, it Symbolic reference: instead of containing the <<def_SHA1,SHA1>> id
is of the format 'ref: refs/some/thing' and when referenced, it itself, it is of the format '<<def_ref,ref>>: refs/some/thing' and when
recursively dereferences to this reference. 'HEAD' is a prime referenced, it recursively dereferences to this reference. 'HEAD' is a
example of a symref. Symbolic references are manipulated with prime example of a <<def_symref,symref>>. Symbolic references are
the gitlink:git-symbolic-ref[1] command. manipulated with the gitlink:git-symbolic-ref[1] command.
topic branch:: [[def_tag]]tag::
A regular git branch that is used by a developer to A <<def_ref,ref>> pointing to a <<def_tag,tag>> or
identify a conceptual line of development. Since branches <<def_commit_object,commit object>>. In contrast to a <<def_head,head>>,
are very easy and inexpensive, it is often desirable to a <<def_tag,tag>> is not changed by a <<def_commit,commit>>. Tags (not
have several small branches that each contain very well <<def_tag,tag>> objects) are stored in `$GIT_DIR/refs/tags/`. A git
defined concepts or small incremental yet related changes. <<def_tag,tag>> has nothing to do with a Lisp <<def_tag,tag>> (which is
called <<def_object_type,object type>> in git's context). A
<<def_tag,tag>> is most typically used to mark a particular point in the
<<def_commit,commit>> ancestry <<def_chain,chain>>.
tracking branch:: [[def_tag_object]]tag object::
A regular git branch that is used to follow changes from An <<def_object,object>> containing a <<def_ref,ref>> pointing to
another repository. A tracking branch should not contain another <<def_object,object>>, which can contain a message just like a
direct modifications or have local commits made to it. <<def_commit_object,commit object>>. It can also contain a (PGP)
A tracking branch can usually be identified as the signature, in which case it is called a "signed <<def_tag_object,tag
right-hand-side ref in a Pull: refspec. object>>".
tree object:: [[def_topic_branch]]topic branch::
An object containing a list of file names and modes along with refs A regular git <<def_branch,branch>> that is used by a developer to
to the associated blob and/or tree objects. A tree is equivalent identify a conceptual line of development. Since branches are very easy
to a directory. and inexpensive, it is often desirable to have several small branches
that each contain very well defined concepts or small incremental yet
related changes.
tree:: [[def_tracking_branch]]tracking branch::
Either a working tree, or a tree object together with the A regular git <<def_branch,branch>> that is used to follow changes from
dependent blob and tree objects (i.e. a stored representation another <<def_repository,repository>>. A <<def_tracking_branch,tracking
of a working tree). branch>> should not contain direct modifications or have local commits
made to it. A <<def_tracking_branch,tracking branch>> can usually be
identified as the right-hand-side <<def_ref,ref>> in a Pull:
<<def_refspec,refspec>>.
tree-ish:: [[def_tree]]tree::
A ref pointing to either a commit object, a tree object, or a Either a <<def_working_tree,working tree>>, or a <<def_tree_object,tree
tag object pointing to a tag or commit or tree object. object>> together with the dependent blob and <<def_tree,tree>> objects
(i.e. a stored representation of a <<def_working_tree,working tree>>).
tag object:: [[def_tree_object]]tree object::
An object containing a ref pointing to another object, which can An <<def_object,object>> containing a list of file names and modes along
contain a message just like a commit object. It can also with refs to the associated blob and/or <<def_tree,tree>> objects. A
contain a (PGP) signature, in which case it is called a "signed <<def_tree,tree>> is equivalent to a <<def_directory,directory>>.
tag object".
tag:: [[def_tree-ish]]tree-ish::
A ref pointing to a tag or commit object. In contrast to a head, A <<def_ref,ref>> pointing to either a <<def_commit_object,commit
a tag is not changed by a commit. Tags (not tag objects) are object>>, a <<def_tree_object,tree object>>, or a <<def_tag_object,tag
stored in `$GIT_DIR/refs/tags/`. A git tag has nothing to do with object>> pointing to a <<def_tag,tag>> or <<def_commit,commit>> or
a Lisp tag (which is called object type in git's context). <<def_tree_object,tree object>>.
A tag is most typically used to mark a particular point in the
commit ancestry chain.
unmerged index:: [[def_unmerged_index]]unmerged index::
An index which contains unmerged index entries. An <<def_index,index>> which contains <<def_unmerged_index,unmerged
index>> entries.
unreachable object:: [[def_unreachable_object]]unreachable object::
An object which is not reachable from a branch, tag, or any An <<def_object,object>> which is not <<def_reachable,reachable>> from a
other reference. <<def_branch,branch>>, <<def_tag,tag>>, or any other reference.
working tree::
The set of files and directories currently being worked on,
i.e. you can work in your working tree without using git at all.
[[def_working_tree]]working tree::
The set of files and directories currently being worked on, i.e. you can
work in your <<def_working_tree,working tree>> without using git at all.

Просмотреть файл

@ -1,69 +0,0 @@
#!/usr/bin/perl
%terms=();
while(<>) {
if(/^(\S.*)::$/) {
my $term=$1;
if(defined($terms{$term})) {
die "$1 defined twice\n";
}
$terms{$term}="";
LOOP: while(<>) {
if(/^$/) {
last LOOP;
}
if(/^ \S/) {
$terms{$term}.=$_;
} else {
die "Error 1: $_";
}
}
}
}
sub format_tab_80 ($) {
my $text=$_[0];
my $result="";
$text=~s/\s+/ /g;
$text=~s/^\s+//;
while($text=~/^(.{1,72})(|\s+(\S.*)?)$/) {
$result.=" ".$1."\n";
$text=$3;
}
return $result;
}
sub no_spaces ($) {
my $result=$_[0];
$result=~tr/ /_/;
return $result;
}
print 'GIT Glossary
============
This list is sorted alphabetically:
';
@keys=sort {uc($a) cmp uc($b)} keys %terms;
$pattern='(\b(?<!link:git-)'.join('\b|\b(?<!-)',reverse @keys).'\b)';
foreach $key (@keys) {
$terms{$key}=~s/$pattern/sprintf "<<def_".no_spaces($1).",$1>>";/eg;
print '[[def_'.no_spaces($key).']]'.$key."::\n"
.format_tab_80($terms{$key})."\n";
}
print '
Author
------
Written by Johannes Schindelin <Johannes.Schindelin@gmx.de> and
the git-list <git@vger.kernel.org>.
GIT
---
Part of the link:git.html[git] suite
';

Просмотреть файл

@ -3013,9 +3013,6 @@ confusing and scary messages, but it won't actually do anything bad. In
contrast, running "git prune" while somebody is actively changing the contrast, running "git prune" while somebody is actively changing the
repository is a *BAD* idea). repository is a *BAD* idea).
Glossary of git terms
=====================
include::glossary.txt[] include::glossary.txt[]
Notes and todo list for this manual Notes and todo list for this manual