Autogenerated man pages for v1.4.2-rc1-g0d51
authorJunio C Hamano <junio@hera.kernel.org>
Mon, 24 Jul 2006 08:25:11 +0000 (08:25 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Mon, 24 Jul 2006 08:25:11 +0000 (08:25 +0000)
man1/git-cvsexportcommit.1
man1/git-repo-config.1
man1/git-tar-tree.1

index a560d84a37ab1ddf2064b4667f6cc26c02fdfc85..e03d9813f78d4ab58670be6756161b85d576b60d 100755 (executable)
@@ -23,7 +23,7 @@ git-cvsexportcommit \- Export a commit to a CVS checkout
 .SH "SYNOPSIS"
 
 
-\fIgit\-cvsexportcommit\fR [\-h] [\-v] [\-c] [\-p] [\-f] [\-m msgprefix] [PARENTCOMMIT] COMMITID
+\fIgit\-cvsexportcommit\fR [\-h] [\-v] [\-c] [\-p] [\-a] [\-f] [\-m msgprefix] [PARENTCOMMIT] COMMITID
 
 .SH "DESCRIPTION"
 
@@ -52,6 +52,10 @@ Commit automatically if the patch applied cleanly\&. It will not commit if any h
 \-p
 Be pedantic (paranoid) when applying patches\&. Invokes patch with \-\-fuzz=0
 
+.TP
+\-a
+Add authorship information\&. Adds Author line, and Committer (if different from Author) to the message\&.
+
 .TP
 \-f
 Force the merge even if the files are not up to date\&.
index 6216b9d28ce2447d566e1c5e5a9260232a352579..64b42388d0fbb81165766023ca3ba92322caebef 100755 (executable)
@@ -357,6 +357,10 @@ Character encoding the commit messages are stored in; git itself does not care p
 merge\&.summary
 Whether to include summaries of merged commits in newly created merge commit messages\&. False by default\&.
 
+.TP
+pack\&.window
+The size of the window used by \fBgit\-pack\-objects\fR(1) when no window size is given on the command line\&. Defaults to 10\&.
+
 .TP
 pull\&.octopus
 The default merge strategy to use when pulling multiple branches at once\&.
@@ -373,6 +377,10 @@ The default \fBgit\-diff\-tree\fR(1) arguments to be used for \fBgit\-show\fR(1)
 showbranch\&.default
 The default set of branches for \fBgit\-show\-branch\fR(1)\&. See \fBgit\-show\-branch\fR(1)\&.
 
+.TP
+tar\&.umask
+By default, sets file and directories modes to 0666 or 0777\&. While this is both useful and acceptable for projects such as the Linux Kernel, it might be excessive for other projects\&. With this variable, it becomes possible to tell to apply a specific umask to the modes above\&. The special value "user" indicates that the user's current umask will be used\&. This should be enough for most projects, as it will lead to the same permissions as would use\&. The default value remains 0, which means world read\-write\&.
+
 .TP
 user\&.email
 Your email address to be recorded in any newly created commits\&. Can be overridden by the \fIGIT_AUTHOR_EMAIL\fR and \fIGIT_COMMITTER_EMAIL\fR environment variables\&. See \fBgit\-commit\-tree\fR(1)\&.
index 39230c3ecc771571bd363e61df401a1566272394..f3e00b5f95f2848c3c693509b38d6e2c47e5f993 100755 (executable)
@@ -47,6 +47,18 @@ Leading path to the files in the resulting tar archive\&.
 \-\-remote=<repo>
 Instead of making a tar archive from local repository, retrieve a tar archive from a remote repository\&.
 
+.SH "CONFIGURATION"
+
+
+By default, file and directories modes are set to 0666 or 0777\&. It is possible to change this by setting the "umask" variable in the repository configuration as follows :
+
+.nf
+umask = 002     ;# group friendly
+.fi
+
+
+The special umask value "user" indicates that the user's current umask will be used instead\&. The default value remains 0, which means world readable/writable files and directories\&.
+
 .SH "EXAMPLES"
 
 .TP