From: Junio C Hamano Date: Tue, 16 Jan 2007 22:05:10 +0000 (+0000) Subject: Autogenerated HTML docs for v1.5.0-rc1-g8bef X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1ce39abefc28fb6bc3dbd598910d69660344da9c;p=git.git Autogenerated HTML docs for v1.5.0-rc1-g8bef --- diff --git a/git-push.html b/git-push.html index 746453ced..bba84c054 100644 --- a/git-push.html +++ b/git-push.html @@ -272,7 +272,7 @@ git-push(1) Manual Page

SYNOPSIS

-

git-push [--all] [--tags] [-f | --force] <repository> <refspec>…

+

git-push [--all] [--tags] [--exec=<receive-pack>] [--repo=all] [-f | --force] [-v] [<repository> <refspec>…]

DESCRIPTION

@@ -344,6 +344,17 @@ the remote repository.

+--exec +
+
+

+ Path to the git-receive-pack program on the remote + end. Sometimes useful when pushing to a remote + repository over ssh, and you do not have the program in + a directory on the default $PATH. +

+
+
-f, --force
@@ -354,6 +365,33 @@ the remote repository.

remote repository to lose commits; use it with care.

+
+--repo=<repo> +
+
+

+ When no repository is specified the command defaults to + "origin"; this overrides it. +

+
+
+--thin, --no-thin +
+
+

+ These options are passed to git-send-pack. Thin + transfer spends extra cycles to minimize the number of + objects to be sent and meant to be used on slower connection. +

+
+
+-v +
+
+

+ Run verbosely. +

+

GIT URLS

@@ -506,7 +544,7 @@ by Linus Torvalds <torvalds@osdl.org>

diff --git a/git-push.txt b/git-push.txt index 197f4b512..3e8dbcf93 100644 --- a/git-push.txt +++ b/git-push.txt @@ -8,7 +8,7 @@ git-push - Update remote refs along with associated objects SYNOPSIS -------- -'git-push' [--all] [--tags] [-f | --force] ... +'git-push' [--all] [--tags] [--exec=] [--repo=all] [-f | --force] [-v] [ ...] DESCRIPTION ----------- @@ -67,12 +67,30 @@ the remote repository. addition to refspecs explicitly listed on the command line. +\--exec:: + Path to the 'git-receive-pack' program on the remote + end. Sometimes useful when pushing to a remote + repository over ssh, and you do not have the program in + a directory on the default $PATH. + -f, \--force:: Usually, the command refuses to update a remote ref that is not a descendant of the local ref used to overwrite it. This flag disables the check. This can cause the remote repository to lose commits; use it with care. +\--repo=:: + When no repository is specified the command defaults to + "origin"; this overrides it. + +\--thin, \--no-thin:: + These options are passed to `git-send-pack`. Thin + transfer spends extra cycles to minimize the number of + objects to be sent and meant to be used on slower connection. + +-v:: + Run verbosely. + include::urls.txt[] Author diff --git a/git-rm.html b/git-rm.html index 0b2a6e853..402a01bb4 100644 --- a/git-rm.html +++ b/git-rm.html @@ -360,8 +360,7 @@ git-rm Documentation/\*.txt

Removes all *.txt files from the index that are under the - Documentation directory and any of its subdirectories. The - files are not removed from the working tree. + Documentation directory and any of its subdirectories.

Note that the asterisk * is quoted from the shell in this example; this lets the command include the files from @@ -372,10 +371,9 @@ git-rm -f git-*.sh

- Remove all git-*.sh scripts that are in the index. The files - are removed from the index, and from the working - tree. Because this example lets the shell expand the - asterisk (i.e. you are listing the files explicitly), it + Remove all git-*.sh scripts that are in the index. + Because this example lets the shell expand the asterisk + (i.e. you are listing the files explicitly), it does not remove subdir/git-foo.sh.

@@ -399,7 +397,7 @@ git-rm -f git-*.sh diff --git a/git-rm.txt b/git-rm.txt index 3a8f279e1..6feebc040 100644 --- a/git-rm.txt +++ b/git-rm.txt @@ -60,21 +60,17 @@ a file that you have not told git about does not remove that file. EXAMPLES -------- git-rm Documentation/\\*.txt:: - Removes all `\*.txt` files from the index that are under the - `Documentation` directory and any of its subdirectories. The - files are not removed from the working tree. + `Documentation` directory and any of its subdirectories. + Note that the asterisk `\*` is quoted from the shell in this example; this lets the command include the files from subdirectories of `Documentation/` directory. git-rm -f git-*.sh:: - - Remove all git-*.sh scripts that are in the index. The files - are removed from the index, and from the working - tree. Because this example lets the shell expand the - asterisk (i.e. you are listing the files explicitly), it + Remove all git-*.sh scripts that are in the index. + Because this example lets the shell expand the asterisk + (i.e. you are listing the files explicitly), it does not remove `subdir/git-foo.sh`. See Also