From: Junio C Hamano
Date: Mon, 3 Dec 2007 09:57:55 +0000 (+0000)
Subject: Autogenerated HTML docs for v1.5.3.7-994-g36863
X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0c99970a28e8702164d721f718aab95a0f23e1b4;p=git.git
Autogenerated HTML docs for v1.5.3.7-994-g36863
---
diff --git a/config.txt b/config.txt
index 39d1ef529..4124ad297 100644
--- a/config.txt
+++ b/config.txt
@@ -346,6 +346,13 @@ branch..mergeoptions::
option values containing whitespace characters are currently not
supported.
+branch..rebase::
+ When true, rebase the branch on top of the fetched branch,
+ instead of merging the default branch from the default remote.
+ *NOTE*: this is a possibly dangerous operation; do *not* use
+ it unless you understand the implications (see gitlink:git-rebase[1]
+ for details).
+
clean.requireForce::
A boolean to make git-clean do nothing unless given -f
or -n. Defaults to true.
diff --git a/git-commit.html b/git-commit.html
index 0283f709f..90b59cbc4 100644
--- a/git-commit.html
+++ b/git-commit.html
@@ -275,7 +275,7 @@ git-commit(1) Manual Page
git-commit [-a | --interactive] [-s] [-v] [-u]
[(-c | -C) <commit> | -F <file> | -m <msg> | --amend]
- [--no-verify] [-e] [--author <author>]
+ [--allow-empty] [--no-verify] [-e] [--author <author>]
[--] [[-i | -o ]<file>…]
DESCRIPTION
@@ -409,6 +409,17 @@ that, you can recover from it with git-reset(1).
+--allow-empty
+
+
+
+ Usually recording a commit that has the exact same tree as its
+ sole parent commit and the command prevents you from making such
+ a mistake. This option bypasses the safety, and is primarily
+ for use by foreign scm interface scripts.
+
+
+
-e|--edit
@@ -704,7 +715,7 @@ Junio C Hamano <junkio@cox.net>