From e90436a8b30ea0a8fa8b6aecfd66f48f650a58e2 Mon Sep 17 00:00:00 2001
From: Junio C Hamano
Date: Sun, 22 Apr 2007 07:22:13 +0000
Subject: [PATCH] Autogenerated HTML docs for v1.5.1.2-242-g2d765
---
RelNotes-1.5.1.2.txt | 27 +-
cmds-purehelpers.txt | 3 +
config.txt | 13 +
git-check-attr.html | 315 ++++++++++++++++++++++
git-check-attr.txt | 37 +++
git-config.html | 30 ++-
git-index-pack.html | 12 +-
git-index-pack.txt | 5 +
git-pack-objects.html | 12 +-
git-pack-objects.txt | 5 +
git.html | 10 +-
git.txt | 6 +-
gitattributes.html | 596 ++++++++++++++++++++++++++++++++++++++++++
gitattributes.txt | 285 ++++++++++++++++++++
14 files changed, 1344 insertions(+), 12 deletions(-)
create mode 100644 git-check-attr.html
create mode 100644 git-check-attr.txt
create mode 100644 gitattributes.html
create mode 100644 gitattributes.txt
diff --git a/RelNotes-1.5.1.2.txt b/RelNotes-1.5.1.2.txt
index f58268f6b..d88456306 100644
--- a/RelNotes-1.5.1.2.txt
+++ b/RelNotes-1.5.1.2.txt
@@ -1,4 +1,4 @@
-GIT v1.5.1.2 Release Notes (draft)
+GIT v1.5.1.2 Release Notes
==========================
Fixes since v1.5.1.1
@@ -6,6 +6,11 @@ Fixes since v1.5.1.1
* Bugfixes
+ - "git clone" over http from a repository that has lost the
+ loose refs by running "git pack-refs" were broken (a code to
+ deal with this was added to "git fetch" in v1.5.0, but it
+ was missing from "git clone").
+
- "git diff a/ b/" incorrectly fell in "diff between two
filesystem objects" codepath, when the user most likely
wanted to limit the extent of output to two tracked
@@ -24,14 +29,22 @@ Fixes since v1.5.1.1
- git-blame on a very long working tree path had buffer
overrun problem.
+ - git-apply did not like to be fed two patches in a row that created
+ and then modified the same file.
+
+ - git-svn was confused when a non-project was stored directly under
+ trunk/, branches/ and tags/.
+
+ - git-svn wants the Error.pm module that was at least as new
+ as what we ship as part of git; install ours in our private
+ installation location if the one on the system is older.
+
+ - An earlier update to command line integer parameter parser was
+ botched and made 'update-index --cacheinfo' completely useless.
+
+
* Documentation updates
- Various documentation updates from J. Bruce Fields, Frank
Lichtenheld, Alex Riesen and others. Andrew Ruder started a
war on undocumented options.
-
----
-exec >/var/tmp/1
-O=v1.5.1.1-31-g0220f1e
-echo O=`git describe refs/heads/maint`
-git shortlog --no-merges $O..refs/heads/maint
diff --git a/cmds-purehelpers.txt b/cmds-purehelpers.txt
index d0cc56904..05a2f38b9 100644
--- a/cmds-purehelpers.txt
+++ b/cmds-purehelpers.txt
@@ -1,6 +1,9 @@
gitlink:git-applypatch[1]::
Apply one patch extracted from an e-mail.
+gitlink:git-check-attr[1]::
+ Display gitattributes information..
+
gitlink:git-check-ref-format[1]::
Make sure ref name is well formed.
diff --git a/config.txt b/config.txt
index 2c0a66632..b13ff3a1b 100644
--- a/config.txt
+++ b/config.txt
@@ -525,6 +525,19 @@ merge.verbosity::
conflicts, 2 outputs conflicts and file changes. Level 5 and
above outputs debugging information. The default is level 2.
+merge..name::
+ Defines a human readable name for a custom low-level
+ merge driver. See gitlink:gitattributes[5] for details.
+
+merge..driver::
+ Defines the command that implements a custom low-level
+ merge driver. See gitlink:gitattributes[5] for details.
+
+merge..recursive::
+ Names a low-level merge driver to be used when
+ performing an internal merge between common ancestors.
+ See gitlink:gitattributes[5] for details.
+
pack.window::
The size of the window used by gitlink:git-pack-objects[1] when no
window size is given on the command line. Defaults to 10.
diff --git a/git-check-attr.html b/git-check-attr.html
new file mode 100644
index 000000000..0dc323ecb
--- /dev/null
+++ b/git-check-attr.html
@@ -0,0 +1,315 @@
+
+
+
+
+
+
+git-check-attr(1)
+
+
+
+SYNOPSIS
+
+
git-check-attr attr… [--] pathname…
+
+DESCRIPTION
+
+
For every pathname, this command will list if each attr is unspecified,
+set, or unset as a gitattribute on that pathname.
+
+OPTIONS
+
+
+-
+--
+
+-
+
+ Interpret all preceding arguments as attributes, and all following
+ arguments as path names. If not supplied, only the first argument will
+ be treated as an attribute.
+
+
+
+
+Author
+
+
Written by Junio C Hamano <junkio@cox.net>
+
+Documentation
+
+
Documentation by James Bowes.
+
+GIT
+
+
Part of the git(7) suite
+
+
+
+
diff --git a/git-check-attr.txt b/git-check-attr.txt
new file mode 100644
index 000000000..ceb51959b
--- /dev/null
+++ b/git-check-attr.txt
@@ -0,0 +1,37 @@
+git-check-attr(1)
+=================
+
+NAME
+----
+git-check-attr - Display gitattributes information.
+
+
+SYNOPSIS
+--------
+'git-check-attr' attr... [--] pathname...
+
+DESCRIPTION
+-----------
+For every pathname, this command will list if each attr is 'unspecified',
+'set', or 'unset' as a gitattribute on that pathname.
+
+OPTIONS
+-------
+\--::
+ Interpret all preceding arguments as attributes, and all following
+ arguments as path names. If not supplied, only the first argument will
+ be treated as an attribute.
+
+
+Author
+------
+Written by Junio C Hamano
+
+Documentation
+--------------
+Documentation by James Bowes.
+
+GIT
+---
+Part of the gitlink:git[7] suite
+
diff --git a/git-config.html b/git-config.html
index 7ed664e53..2d6093b2f 100644
--- a/git-config.html
+++ b/git-config.html
@@ -1377,6 +1377,34 @@ merge.verbosity
+merge.<driver>.name
+
+
+
+ Defines a human readable name for a custom low-level
+ merge driver. See gitattributes(5) for details.
+
+
+
+merge.<driver>.driver
+
+
+
+ Defines the command that implements a custom low-level
+ merge driver. See gitattributes(5) for details.
+
+
+
+merge.<driver>.recursive
+
+
+
+ Names a low-level merge driver to be used when
+ performing an internal merge between common ancestors.
+ See gitattributes(5) for details.
+
+
+
pack.window
@@ -1617,7 +1645,7 @@ transfer.unpackLimit