From 0430e3a874bf1f6935be905e8539d77d41f48a62 Mon Sep 17 00:00:00 2001
From: Junio C Hamano
Date: Tue, 15 May 2007 03:13:17 +0000
Subject: [PATCH] Autogenerated HTML docs for v1.5.2-rc3-39-gaf9b
---
RelNotes-1.5.1.5.txt | 37 ++
RelNotes-1.5.2.txt | 2 +-
git-add.html | 9 +-
git-add.txt | 7 +-
git-am.html | 45 +-
git-am.txt | 35 +-
git-applymbox.html | 4 +-
git-applymbox.txt | 2 +-
git-diff-tree.html | 172 ++++----
git-diff-tree.txt | 5 +-
git-log.html | 206 ++++-----
git-log.txt | 5 +-
git-mailinfo.html | 4 +-
git-mailinfo.txt | 2 +-
git-rev-list.html | 998 ++++++++++++++++++++++---------------------
git-rev-list.txt | 6 +-
git-show.html | 76 ++--
git-show.txt | 3 +
gitattributes.html | 8 +-
gitattributes.txt | 6 +-
pretty-formats.txt | 66 ++-
pretty-options.txt | 14 +
22 files changed, 907 insertions(+), 805 deletions(-)
create mode 100644 RelNotes-1.5.1.5.txt
create mode 100644 pretty-options.txt
diff --git a/RelNotes-1.5.1.5.txt b/RelNotes-1.5.1.5.txt
new file mode 100644
index 000000000..5cfe0b5b0
--- /dev/null
+++ b/RelNotes-1.5.1.5.txt
@@ -0,0 +1,37 @@
+GIT v1.5.1.5 Release Notes (draft)
+==========================
+
+Fixes since v1.5.1.4
+--------------------
+
+* Bugfixes
+
+ - git-svn was reported to segfault for many people on list and
+ #git; hopefully this has been fixed.
+
+ - "git-svn clone" does not try to minimize the URL
+ (i.e. connect to higher level hierarchy) by default, as this
+ can prevent clone to fail if only part of the repository
+ (e.g. 'trunk') is open to public.
+
+ - "git checkout branch^0" did not detach the head when you are
+ already on 'branch'; backported the fix from the 'master'.
+
+ - "git-config section.var" did not correctly work when
+ existing configuration file had both [section] and [section "name"]
+ next to each other.
+
+ - "git clone ../other-directory" was fooled if the current
+ directory $PWD points at is a symbolic link.
+
+ - (build) tree_entry_extract() function was both static inline
+ and extern, which caused trouble compiling with Forte12
+ compilers on Sun.
+
+ - Many documentation fixes.
+
+--
+exec >/var/tmp/1
+O=v1.5.1.4-26-gb4b20b2
+echo O=`git describe refs/heads/maint`
+git shortlog --no-merges $O..refs/heads/maint
diff --git a/RelNotes-1.5.2.txt b/RelNotes-1.5.2.txt
index d1c2cac4f..7dbdb2698 100644
--- a/RelNotes-1.5.2.txt
+++ b/RelNotes-1.5.2.txt
@@ -26,7 +26,7 @@ Updates since v1.5.1
considered a binary or text (the former would be treated by
'git diff' not to produce textual output; the latter can go
through the line endings conversion process in repositories
- with core.autocrlf set), expand and unexpand '$ident$' keyword
+ with core.autocrlf set), expand and unexpand '$Id$' keyword
with blob object name, specify a custom 3-way merge driver,
and specify a custom diff driver. You can also apply
arbitrary filter to contents on check-in/check-out codepath
diff --git a/git-add.html b/git-add.html
index 48114b6bb..03df0ed72 100644
--- a/git-add.html
+++ b/git-add.html
@@ -347,8 +347,11 @@ commit.
- Update all files that git already knows about. This is what
- "git commit -a" does in preparation for making a commit.
+ Update only files that git already knows about. This is similar
+ to what "git commit -a" does in preparation for making a commit,
+ except that the update is limited to paths specified on the
+ command line. If no paths are specified, all tracked files are
+ updated.
@@ -545,7 +548,7 @@ diff