From faa1e50737bfc349e8315c99a2ed59182fd557b1 Mon Sep 17 00:00:00 2001
From: Junio C Hamano
Date: Sun, 10 Aug 2008 03:55:58 +0000
Subject: [PATCH] Autogenerated HTML docs for v1.6.0-rc2-22-g71b9
---
RelNotes-1.6.0.txt | 6 +++---
git-commit-tree.html | 12 ++++++------
git-commit-tree.txt | 10 +++++-----
git-fetch.html | 4 ++--
git-filter-branch.html | 21 +++++++++++++++------
git-filter-branch.txt | 21 ++++++++++++++++-----
git-pull.html | 4 ++--
git-push.html | 6 +++---
git-push.txt | 4 ++--
git-rerere.html | 8 ++++----
git-rerere.txt | 6 +++---
git-rm.html | 7 +++++--
git-rm.txt | 3 ++-
git-svn.html | 19 ++++++++++++++++++-
git-svn.txt | 9 +++++++++
pull-fetch-param.txt | 2 +-
user-manual.html | 6 +++---
user-manual.txt | 4 ++--
18 files changed, 101 insertions(+), 51 deletions(-)
diff --git a/RelNotes-1.6.0.txt b/RelNotes-1.6.0.txt
index e524d80fb..8afb5b253 100644
--- a/RelNotes-1.6.0.txt
+++ b/RelNotes-1.6.0.txt
@@ -5,7 +5,7 @@ User visible changes
--------------------
With the default Makefile settings, most of the programs are now
-installed outside your $PATH, except for "git", "gitk", "git-gui" and
+installed outside your $PATH, except for "git", "gitk" and
some server side programs that need to be accessible for technical
reasons. Invoking a git subcommand as "git-xyzzy" from the command
line has been deprecated since early 2006 (and officially announced in
@@ -186,7 +186,7 @@ Updates since v1.5.6
* fast-import and fast-export learned to export and import gitlinks.
-* "gitk" left background process behind after begin asked to dig very deep
+* "gitk" left background process behind after being asked to dig very deep
history and the user killed the UI; the process is killed when the UI goes
away now.
@@ -248,6 +248,6 @@ this release, unless otherwise noted.
---
exec >/var/tmp/1
-O=v1.6.0-rc1-113-gf44bc33
+O=v1.6.0-rc2-21-g0bb3a0b
echo O=$(git describe refs/heads/master)
git shortlog --no-merges $O..refs/heads/master ^refs/heads/maint
diff --git a/git-commit-tree.html b/git-commit-tree.html
index 1f832dfb7..da3e1fd5d 100644
--- a/git-commit-tree.html
+++ b/git-commit-tree.html
@@ -327,11 +327,11 @@ git-commit-tree(1) Manual Page
This is usually not what an end user wants to run directly. See
git-commit(1) instead.
Creates a new commit object based on the provided tree object and
-emits the new commit object id on stdout. If no parent is given then
-it is considered to be an initial tree.
-A commit object usually has 1 parent (a commit after a change) or up
-to 16 parents. More than one parent represents a merge of branches
-that led to them.
+emits the new commit object id on stdout.
+A commit object may have any number of parents. With exactly one
+parent, it is an ordinary commit. Having more than one parent makes
+the commit a merge between several lines of history. Initial (root)
+commits have no parents.
While a tree represents a particular directory state of a working
directory, a commit represents that state in "time", and explains how
to get there.
@@ -525,7 +525,7 @@ reversible operation.