From 1d90cb06fff9524ece5485f8d716da466af822d7 Mon Sep 17 00:00:00 2001
From: Junio C Hamano
Date: Tue, 3 Jul 2007 07:05:31 +0000
Subject: [PATCH] Autogenerated HTML docs for v1.5.3-rc0
---
RelNotes-1.5.2.3.txt | 27 +++
cmds-mainporcelain.txt | 3 +
config.txt | 2 +-
git-branch.html | 9 +-
git-branch.txt | 8 +-
git-checkout.html | 7 +-
git-checkout.txt | 6 +-
git-config.html | 4 +-
git-format-patch.html | 7 +-
git-format-patch.txt | 5 +-
git-fsck.html | 13 +-
git-fsck.txt | 6 +-
git-init-db.html | 4 +-
git-init-db.txt | 2 +-
git-init.html | 12 +-
git-init.txt | 6 +-
git-local-fetch.html | 3 +-
git-local-fetch.txt | 2 +
git-rebase.html | 156 +++++++++++++-
git-rebase.txt | 106 +++++++++-
git-receive-pack.html | 7 +-
git-receive-pack.txt | 10 +-
git-rev-list.html | 3 +-
git-rev-list.txt | 4 +-
git-ssh-fetch.html | 3 +-
git-ssh-fetch.txt | 2 +
git-ssh-upload.html | 3 +-
git-ssh-upload.txt | 2 +
git-stash.html | 460 +++++++++++++++++++++++++++++++++++++++++
git-stash.txt | 162 +++++++++++++++
git-submodule.html | 25 ++-
git-submodule.txt | 11 +
git.html | 10 +-
git.txt | 3 +-
34 files changed, 1039 insertions(+), 54 deletions(-)
create mode 100644 RelNotes-1.5.2.3.txt
create mode 100644 git-stash.html
create mode 100644 git-stash.txt
diff --git a/RelNotes-1.5.2.3.txt b/RelNotes-1.5.2.3.txt
new file mode 100644
index 000000000..addb22955
--- /dev/null
+++ b/RelNotes-1.5.2.3.txt
@@ -0,0 +1,27 @@
+GIT v1.5.2.3 Release Notes
+==========================
+
+Fixes since v1.5.2.2
+--------------------
+
+ * Bugfixes
+
+ - Version 2 pack index format was introduced in version 1.5.2
+ to support pack files that has offset that cannot be
+ represented in 32-bit. The runtime code to validate such
+ an index mishandled such an index for an empty pack.
+
+ - Commit walkers (most notably, fetch over http protocol)
+ tried to traverse commit objects contained in trees (aka
+ subproject); they shouldn't.
+
+ - A build option NO_R_TO_GCC_LINKER was not explained in Makefile
+ comment correctly.
+
+ * Documentation Fixes and Updates
+
+ - git-config --regexp was not documented properly.
+
+ - git-repack -a was not documented properly.
+
+ - git-remote -n was not documented properly.
diff --git a/cmds-mainporcelain.txt b/cmds-mainporcelain.txt
index 2c3697c69..a87814bbe 100644
--- a/cmds-mainporcelain.txt
+++ b/cmds-mainporcelain.txt
@@ -94,6 +94,9 @@ gitlink:git-shortlog[1]::
gitlink:git-show[1]::
Show various types of objects.
+gitlink:git-stash[1]::
+ Stash the changes in a dirty working directory away.
+
gitlink:git-status[1]::
Show the working tree status.
diff --git a/config.txt b/config.txt
index 50503e84b..1d96adf30 100644
--- a/config.txt
+++ b/config.txt
@@ -275,7 +275,7 @@ You probably do not need to adjust this value.
+
Common unit suffixes of 'k', 'm', or 'g' are supported.
-core.excludeFile::
+core.excludesfile::
In addition to '.gitignore' (per-directory) and
'.git/info/exclude', git looks into this file for patterns
of files which are not meant to be tracked. See
diff --git a/git-branch.html b/git-branch.html
index 22a51bfc7..c4afc68eb 100644
--- a/git-branch.html
+++ b/git-branch.html
@@ -302,7 +302,7 @@ renaming. If <newbranch> exists, -M must be used to force the rename
to happen.
With a -d or -D option, <branchname> will be deleted. You may
specify more than one branch for deletion. If the branch currently
-has a ref log then the ref log will also be deleted. Use -r together with -d
+has a reflog then the reflog will also be deleted. Use -r together with -d
to delete remote-tracking branches.
OPTIONS
@@ -329,8 +329,9 @@ to delete remote-tracking branches.
- Create the branch's ref log. This activates recording of
- all changes to made the branch ref, enabling use of date
+ Create the branch's reflog. This activates recording of
+ all changes made to the branch ref, enabling use of date
+ based sha1 expressions such as "<branchname>@{yesterday}".
@@ -526,7 +527,7 @@ a branch and check it out with a single command.