From: Junio C Hamano Date: Wed, 11 Jan 2006 00:54:55 +0000 (-0800) Subject: Autogenerated HTML docs for v1.1.1-gcfa6 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f3e80c05076d9a27bfb9e076ac91af18a64f1597;p=git.git Autogenerated HTML docs for v1.1.1-gcfa6 --- diff --git a/glossary.html b/glossary.html index 13952f564..00f2633a1 100644 --- a/glossary.html +++ b/glossary.html @@ -503,6 +503,18 @@ div.exampleblock-content {

+master +
+
+

+ The default branch. Whenever you create a git + repository, a branch named + "master" is created, and becomes the active + branch. In most cases, this contains the local + development. +

+
+
merge
@@ -564,6 +576,18 @@ div.exampleblock-content {

+origin +
+
+

+ The default upstream branch. Most projects have one + upstream project which they track, and by default + origin is used for that purpose. New updates from + upstream will be fetched into this branch; you should + never commit to it yourself. +

+
+
pack
@@ -653,9 +677,9 @@ div.exampleblock-content {

To clean a branch by starting from the - head of the main line of development ("master"), and - reapply the (possibly cherry-picked) changes from that - branch. + head of the main line of development + ("master"), and reapply the (possibly cherry-picked) + changes from that branch.

@@ -800,7 +824,7 @@ the git-list <git@vger.kernel.org>.

diff --git a/glossary.txt b/glossary.txt index 2331be5a7..02a9d9c18 100644 --- a/glossary.txt +++ b/glossary.txt @@ -111,6 +111,17 @@ branch:: a particular revision, which is called the branch head. The branch heads are stored in `$GIT_DIR/refs/heads/`. +master:: + The default branch. Whenever you create a git repository, a branch + named "master" is created, and becomes the active branch. In most + cases, this contains the local development. + +origin:: + The default upstream branch. Most projects have one upstream + project which they track, and by default 'origin' is used for + that purpose. New updates from upstream will be fetched into + this branch; you should never commit to it yourself. + ref:: A 40-byte hex representation of a SHA1 pointing to a particular object. These may be stored in `$GIT_DIR/refs/`.