From: Junio C Hamano
Date: Tue, 3 Jul 2007 07:05:31 +0000 (+0000)
Subject: Autogenerated HTML docs for v1.5.3-rc0
X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1d90cb06fff9524ece5485f8d716da466af822d7;p=git.git
Autogenerated HTML docs for v1.5.3-rc0
---
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.