From: Junio C Hamano Date: Sat, 29 Jul 2006 09:10:13 +0000 (+0000) Subject: Autogenerated HTML docs for v1.4.2-rc2-g818f4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f870ef8e4b6ce1ba13adb762270a261dca05f973;p=git.git Autogenerated HTML docs for v1.4.2-rc2-g818f4 --- diff --git a/git-http-fetch.html b/git-http-fetch.html index 25e2a8313..0191d294c 100644 --- a/git-http-fetch.html +++ b/git-http-fetch.html @@ -272,7 +272,7 @@ git-http-fetch(1) Manual Page

SYNOPSIS

-

git-http-fetch [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] <commit> <url>

+

git-http-fetch [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] [--stdin] <commit> <url>

DESCRIPTION

@@ -331,6 +331,19 @@ commit-id the local end after the transfer is complete.

+
+--stdin +
+
+

+ Instead of a commit id on the commandline (which is not expected in this + case), git-http-fetch expects lines on stdin in the format +

+
+
+
<commit-id>['\t'<filename-as-in--w>]
+
+

Author

@@ -347,7 +360,7 @@ commit-id diff --git a/git-http-fetch.txt b/git-http-fetch.txt index bc1a13289..3d508094a 100644 --- a/git-http-fetch.txt +++ b/git-http-fetch.txt @@ -8,7 +8,7 @@ git-http-fetch - downloads a remote git repository via HTTP SYNOPSIS -------- -'git-http-fetch' [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] +'git-http-fetch' [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] [--stdin] DESCRIPTION ----------- @@ -33,6 +33,12 @@ commit-id:: Writes the commit-id into the filename under $GIT_DIR/refs/ on the local end after the transfer is complete. +--stdin:: + Instead of a commit id on the commandline (which is not expected in this + case), 'git-http-fetch' expects lines on stdin in the format + + ['\t'] + Author ------ Written by Linus Torvalds diff --git a/git-local-fetch.html b/git-local-fetch.html index 11f287ce7..437fc3f3c 100644 --- a/git-local-fetch.html +++ b/git-local-fetch.html @@ -322,6 +322,19 @@ git-local-fetch(1) Manual Page the local end after the transfer is complete.

+
+--stdin +
+
+

+ Instead of a commit id on the commandline (which is not expected in this + case), git-local-fetch expects lines on stdin in the format +

+
+
+
<commit-id>['\t'<filename-as-in--w>]
+
+

Author

@@ -338,7 +351,7 @@ git-local-fetch(1) Manual Page diff --git a/git-local-fetch.txt b/git-local-fetch.txt index 87abec1c4..2fbdfe086 100644 --- a/git-local-fetch.txt +++ b/git-local-fetch.txt @@ -29,6 +29,12 @@ OPTIONS Writes the commit-id into the filename under $GIT_DIR/refs/ on the local end after the transfer is complete. +--stdin:: + Instead of a commit id on the commandline (which is not expected in this + case), 'git-local-fetch' expects lines on stdin in the format + + ['\t'] + Author ------ Written by Junio C Hamano diff --git a/git.html b/git.html index 3f78f095b..a556dd49d 100644 --- a/git.html +++ b/git.html @@ -272,7 +272,8 @@ git(7) Manual Page

SYNOPSIS

-

git [--version] [--exec-path[=GIT_EXEC_PATH]] [--help] COMMAND [ARGS]

+

git [--version] [--exec-path[=GIT_EXEC_PATH]] [-p|--paginate] + [--bare] [--git-dir=GIT_DIR] [--help] COMMAND [ARGS]

DESCRIPTION

FURTHER DOCUMENTATION

@@ -2118,7 +2144,7 @@ contributors on the git-list <git@vger.kernel.org>.

diff --git a/git.txt b/git.txt index ce3058182..7310a2b8b 100644 --- a/git.txt +++ b/git.txt @@ -8,7 +8,8 @@ git - the stupid content tracker SYNOPSIS -------- -'git' [--version] [--exec-path[=GIT_EXEC_PATH]] [--help] COMMAND [ARGS] +'git' [--version] [--exec-path[=GIT_EXEC_PATH]] [-p|--paginate] + [--bare] [--git-dir=GIT_DIR] [--help] COMMAND [ARGS] DESCRIPTION ----------- @@ -41,6 +42,15 @@ OPTIONS environment variable. If no path is given 'git' will print the current setting and then exit. +-p|--paginate:: + Pipe all output into 'less' (or if set, $PAGER). + +--git-dir=:: + Set the path to the repository. This can also be controlled by + setting the GIT_DIR environment variable. + +--bare:: + Same as --git-dir=`pwd`. FURTHER DOCUMENTATION ---------------------