From: Junio C Hamano
Date: Sun, 18 Feb 2007 00:34:59 +0000 (+0000)
Subject: Autogenerated HTML docs for v1.5.0-50-gb7581
X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=89d4e0f4569738d0b1885879bf6ed88a972cd3da;p=git.git
Autogenerated HTML docs for v1.5.0-50-gb7581
---
diff --git a/RelNotes-1.5.0.1.txt b/RelNotes-1.5.0.1.txt
index 982282a89..5dff2a212 100644
--- a/RelNotes-1.5.0.1.txt
+++ b/RelNotes-1.5.0.1.txt
@@ -7,14 +7,31 @@ Fixes since v1.5.0
* Documentation updates
- Clarifications and corrections to 1.5.0 release notes.
+
- The main documentation did not link to git-remote documentation.
+ - Clarified introductory text of git-rebase documentation.
+
+ - Converted remaining mentions of update-index on Porcelain
+ documents to git-add/git-rm.
+
* Bugfixes
- git-daemon marks the listening sockets with FD_CLOEXEC so
that it won't be leaked into the children.
+ - segfault from git-blame when the mandatory pathname
+ parameter was missing was fixed; usage() message is given
+ instead.
+
+* Tweaks
+
+ - sliding mmap() inefficiently mmaped the same region of a
+ packfile with an access pattern that used objects in the
+ reverse order. This has been made more efficient.
+
--
-O=v1.5.0-7-g37b73cf
+exec >/var/tmp/1
+O=v1.5.0-24-g460ca30
echo O=`git describe maint`
-git shortlog --no-merges $O..
+git shortlog --no-merges $O..maint
diff --git a/RelNotes-1.5.1.txt b/RelNotes-1.5.1.txt
index 1bb6cc1c5..4d371866c 100644
--- a/RelNotes-1.5.1.txt
+++ b/RelNotes-1.5.1.txt
@@ -19,21 +19,26 @@ Updates since v1.5.0
- "git diff" learned --ignore-space-at-eol. This is a weaker
form of --ignore-space-change.
+ - "git name-rev" learned --refs=, to limit the tags
+ used for naming the given revisions only to the ones
+ matching the given pattern.
+
* Updated behaviour of existing commands.
- - "git diff" outputs a trailing HT when pathnames have embedded
- SP on +++/--- header lines, in order to help "GNU patch" to
- parse its output. "git apply" was already updated to accept
- this modified output format since ce74618d (Sep 22, 2006).
+ - "git diff" outputs a trailing HT when pathnames have embedded
+ SP on +++/--- header lines, in order to help "GNU patch" to
+ parse its output. "git apply" was already updated to accept
+ this modified output format since ce74618d (Sep 22, 2006).
* Hooks
- - The sample update hook to show how to send out notification
- e-mail was updated to show only new commits that appeared in
- the repository. Earlier, it showed new commits that appeared
- on the branch.
+ - The sample update hook to show how to send out notification
+ e-mail was updated to show only new commits that appeared in
+ the repository. Earlier, it showed new commits that appeared
+ on the branch.
--
-O=v1.5.0-20-ga44a0c9
+exec >/var/tmp/1
+O=v1.5.0-49-g69bc0e2
echo O=`git describe master`
-git shortlog --no-merges $O..
+git shortlog --no-merges $O..master ^maint
diff --git a/core-intro.txt b/core-intro.txt
index 24b060b91..eea44d9d5 100644
--- a/core-intro.txt
+++ b/core-intro.txt
@@ -106,7 +106,8 @@ directory tree, and renaming a file does not change the object that
file is associated with in any way.
A blob is typically created when gitlink:git-update-index[1]
-is run, and its data can be accessed by gitlink:git-cat-file[1].
+(or gitlink:git-add[1]) is run, and its data can be accessed by
+gitlink:git-cat-file[1].
Tree Object
~~~~~~~~~~~
diff --git a/git-checkout.html b/git-checkout.html
index 14b659e36..843465cba 100644
--- a/git-checkout.html
+++ b/git-checkout.html
@@ -347,7 +347,8 @@ working tree.
When a merge conflict happens, the index entries for conflicting
paths are left unmerged, and you need to resolve the conflicts
-and mark the resolved paths with git update-index.
+and mark the resolved paths with git add (or git rm if the merge
+should result in deletion of the path).
<new_branch>
@@ -487,11 +488,11 @@ fatal: merge program failed
At this point, git diff shows the changes cleanly merged as in
the previous example, as well as the changes in the conflicted
files. Edit and resolve the conflict and mark it resolved with
-git update-index as usual:
+git add as usual:
$ edit frotz
-$ git update-index frotz
+$ git add frotz
@@ -510,7 +511,7 @@ $ git update-index frotz