From 0d3c81546c38713ca17817d884eed8f9ae6ae88b Mon Sep 17 00:00:00 2001
From: Junio C Hamano
Date: Wed, 8 Nov 2006 01:33:41 +0000
Subject: [PATCH] Autogenerated HTML docs for v1.4.4-rc1
---
config.txt | 11 +-
git-fetch-pack.html | 5 +-
git-fetch-pack.txt | 3 +-
git-index-pack.html | 77 ++++++-
git-index-pack.txt | 52 ++++-
git-pack-objects.html | 29 ++-
git-pack-objects.txt | 17 ++
git-pickaxe.html | 516 ++++++++++++++++++++++++++++++++++++++++++
git-pickaxe.txt | 162 +++++++++++++
git-repo-config.html | 18 +-
git-rev-parse.html | 12 +-
git-rev-parse.txt | 13 +-
git.html | 10 +-
git.txt | 3 +
14 files changed, 911 insertions(+), 17 deletions(-)
create mode 100644 git-pickaxe.html
create mode 100644 git-pickaxe.txt
diff --git a/config.txt b/config.txt
index d9e73da2a..9d3c71c3b 100644
--- a/config.txt
+++ b/config.txt
@@ -301,7 +301,16 @@ imap::
The configuration variables in the 'imap' section are described
in gitlink:git-imap-send[1].
-receive.denyNonFastforwads::
+receive.unpackLimit::
+ If the number of objects received in a push is below this
+ limit then the objects will be unpacked into loose object
+ files. However if the number of received objects equals or
+ exceeds this limit then the received pack will be stored as
+ a pack, after adding any missing delta bases. Storing the
+ pack from a push can make the push operation complete faster,
+ especially on slow filesystems.
+
+receive.denyNonFastForwards::
If set to true, git-receive-pack will deny a ref update which is
not a fast forward. Use this to prevent such an update via a push,
even if that push is forced. This configuration variable is
diff --git a/git-fetch-pack.html b/git-fetch-pack.html
index 2543a7cad..99a307c4b 100644
--- a/git-fetch-pack.html
+++ b/git-fetch-pack.html
@@ -304,7 +304,8 @@ have a common ancestor commit.
Do not invoke git-unpack-objects on received data, but
create a single packfile out of it instead, and store it
- in the object database.
+ in the object database. If provided twice then the pack is
+ locked against repacking.
@@ -368,7 +369,7 @@ have a common ancestor commit.