Autogenerated man pages for v1.1.4-g9264
authorJunio C Hamano <junio@hera.kernel.org>
Wed, 25 Jan 2006 12:37:52 +0000 (04:37 -0800)
committerJunio C Hamano <junio@hera.kernel.org>
Wed, 25 Jan 2006 12:37:52 +0000 (04:37 -0800)
man1/git-clone.1
man1/git-fetch.1
man1/git-pull.1

index bd5dee9..3c58e9a 100755 (executable)
@@ -23,7 +23,7 @@ git-clone \- Clones a repository.
 .SH "SYNOPSIS"
 
 .nf
-git\-clone [\-l [\-s]] [\-q] [\-n] [\-\-naked] [\-o <name>] [\-u <upload\-pack>]
+git\-clone [\-l [\-s]] [\-q] [\-n] [\-\-bare] [\-o <name>] [\-u <upload\-pack>]
           <repository> [<directory>]
 .fi
 
@@ -61,8 +61,8 @@ Operate quietly\&. This flag is passed to "rsync" and "git\-clone\-pack" command
 No checkout of HEAD is performed after the clone is complete\&.
 
 .TP
-\-\-naked
-Make a naked GIT repository\&. That is, instead of creating <directory> and placing the administrative files in <directory>/\&.git, make the <directory> itself the $GIT_DIR\&. This implies \-n option\&.
+\-\-bare
+Make a bare GIT repository\&. That is, instead of creating <directory> and placing the administrative files in <directory>/\&.git, make the <directory> itself the $GIT_DIR\&. This implies \-n option\&. When this option is used, neither the origin branch nor the default remotes/origin file is created\&.
 
 .TP
 \-o <name>
@@ -97,15 +97,15 @@ $ git clone \-l \-s \-n \&. \&.\&./copy
 $ cd copy
 $ git show\-branch
 .TP
-Create a naked repository to publish your changes to the public
+Create a bare repository to publish your changes to the public
 
 .IP
-$ git clone \-\-naked \-l /home/proj/\&.git /pub/scm/proj\&.git
+$ git clone \-\-bare \-l /home/proj/\&.git /pub/scm/proj\&.git
 .TP
 Create a repository on the kernel\&.org machine that borrows from Linus
 
 .IP
-$ git clone \-\-naked \-l \-s /pub/scm/\&.\&.\&./torvalds/linux\-2\&.6\&.git \\
+$ git clone \-\-bare \-l \-s /pub/scm/\&.\&.\&./torvalds/linux\-2\&.6\&.git \\
     /pub/scm/\&.\&.\&./me/subsys\-2\&.6\&.git
 .SH "AUTHOR"
 
index ab22ec7..93c4351 100755 (executable)
@@ -40,6 +40,10 @@ The ref names and their object names of fetched refs are stored in \&.git/FETCH_
 Append ref names and object names of fetched refs to the existing contents of \&.git/FETCH_HEAD\&. Without this option old data in \&.git/FETCH_HEAD will be overwritten\&.
 
 .TP
+\-\-upload\-pack <upload\-pack>, \-u <upload\-pack>, 
+When given, and the repository to fetch from is handled by git\-fetch\-pack, \-\-exec=<upload\-pack> is passed to the command to specify non\-default path for the command run on the other end\&.
+
+.TP
 \-f, \-\-force
 When git\-fetch is used with <rbranch>:<lbranch> refspec, it refuses to update the local branch <lbranch> unless the remote branch <rbranch> it fetches is a descendant of <lbranch>\&. This option overrides that check\&.
 
index 989b34d..5c7e6bc 100755 (executable)
@@ -52,6 +52,10 @@ Use the given merge strategy; can be supplied more than once to specify them in
 Append ref names and object names of fetched refs to the existing contents of \&.git/FETCH_HEAD\&. Without this option old data in \&.git/FETCH_HEAD will be overwritten\&.
 
 .TP
+\-\-upload\-pack <upload\-pack>, \-u <upload\-pack>, 
+When given, and the repository to fetch from is handled by git\-fetch\-pack, \-\-exec=<upload\-pack> is passed to the command to specify non\-default path for the command run on the other end\&.
+
+.TP
 \-f, \-\-force
 When git\-fetch is used with <rbranch>:<lbranch> refspec, it refuses to update the local branch <lbranch> unless the remote branch <rbranch> it fetches is a descendant of <lbranch>\&. This option overrides that check\&.