Autogenerated HTML docs for v1.4.2-rc1-g0d51
authorJunio C Hamano <junio@hera.kernel.org>
Mon, 24 Jul 2006 08:25:03 +0000 (08:25 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Mon, 24 Jul 2006 08:25:03 +0000 (08:25 +0000)
config.txt
git-cvsexportcommit.html
git-cvsexportcommit.txt
git-repo-config.html
git-tar-tree.html
git-tar-tree.txt

index 0b434c1f1923fb10b2420a3295e59fd9d163f39b..9d08dfcedadc8146dc9521212ac078fcb99d57ab 100644 (file)
@@ -193,6 +193,10 @@ merge.summary::
        Whether to include summaries of merged commits in newly created
        merge commit messages. False by default.
 
+pack.window::
+       The size of the window used by gitlink:git-pack-objects[1] when no
+       window size is given on the command line. Defaults to 10.
+
 pull.octopus::
        The default merge strategy to use when pulling multiple branches
        at once.
@@ -208,6 +212,17 @@ showbranch.default::
        The default set of branches for gitlink:git-show-branch[1].
        See gitlink:git-show-branch[1].
 
+tar.umask::
+       By default, git-link:git-tar-tree[1] 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
+       git-link:git-tar-tree[1] 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 git-link:git-checkout[1] would use. The default
+       value remains 0, which means world read-write.
+
 user.email::
        Your email address to be recorded in any newly created commits.
        Can be overridden by the 'GIT_AUTHOR_EMAIL' and 'GIT_COMMITTER_EMAIL'
index c069a6620c09f07e2485f1e445e93c679429bd8e..e23b12ecd9ffb57cc3583f49a303d9ad226c642a 100644 (file)
@@ -272,7 +272,7 @@ git-cvsexportcommit(1) Manual Page
 </div>\r
 <h2>SYNOPSIS</h2>\r
 <div class="sectionbody">\r
-<p><em>git-cvsexportcommit</em> [-h] [-v] [-c] [-p] [-f] [-m msgprefix] [PARENTCOMMIT] COMMITID</p>\r
+<p><em>git-cvsexportcommit</em> [-h] [-v] [-c] [-p] [-a] [-f] [-m msgprefix] [PARENTCOMMIT] COMMITID</p>\r
 </div>\r
 <h2>DESCRIPTION</h2>\r
 <div class="sectionbody">\r
@@ -309,6 +309,15 @@ should the changeset be done against.</p>
 </p>\r
 </dd>\r
 <dt>\r
+-a\r
+</dt>\r
+<dd>\r
+<p>\r
+        Add authorship information. Adds Author line, and Committer (if\r
+        different from Author) to the message.\r
+</p>\r
+</dd>\r
+<dt>\r
 -f\r
 </dt>\r
 <dd>\r
@@ -377,7 +386,7 @@ $ git-cherry cvshead myhead | sed -n 's/^+ //p' | xargs -l1 git-cvsexportcommit
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 15-Jul-2006 01:37:39 UTC\r
+Last updated 24-Jul-2006 08:24:53 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 27ac72d98fcf8cf2cd0c0ab236e7646ecff7499d..092d0d6730294a5ce701522575bc1f8d91755a1d 100644 (file)
@@ -8,7 +8,7 @@ git-cvsexportcommit - Export a commit to a CVS checkout
 
 SYNOPSIS
 --------
-'git-cvsexportcommit' [-h] [-v] [-c] [-p] [-f] [-m msgprefix] [PARENTCOMMIT] COMMITID
+'git-cvsexportcommit' [-h] [-v] [-c] [-p] [-a] [-f] [-m msgprefix] [PARENTCOMMIT] COMMITID
 
 
 DESCRIPTION
@@ -36,9 +36,13 @@ OPTIONS
        commit if any hunks fail to apply or there were other problems.
 
 -p::
-       Be pedantic (paranoid) when applying patches. Invokes patch with 
+       Be pedantic (paranoid) when applying patches. Invokes patch with
        --fuzz=0
 
+-a::
+       Add authorship information. Adds Author line, and Committer (if
+       different from Author) to the message.
+
 -f::
        Force the merge even if the files are not up to date.
 
index ae7a84646f460f5413fbe9e8211f812cb380bba5..15bdeb4ac494917cb6fd8b05d633bdfb79f731aa 100644 (file)
@@ -836,6 +836,15 @@ merge.summary
 </p>\r
 </dd>\r
 <dt>\r
+pack.window\r
+</dt>\r
+<dd>\r
+<p>\r
+        The size of the window used by <a href="git-pack-objects.html">git-pack-objects(1)</a> when no\r
+        window size is given on the command line. Defaults to 10.\r
+</p>\r
+</dd>\r
+<dt>\r
 pull.octopus\r
 </dt>\r
 <dd>\r
@@ -871,6 +880,22 @@ showbranch.default
 </p>\r
 </dd>\r
 <dt>\r
+tar.umask\r
+</dt>\r
+<dd>\r
+<p>\r
+        By default,  sets file and directories modes\r
+        to 0666 or 0777. While this is both useful and acceptable for projects\r
+        such as the Linux Kernel, it might be excessive for other projects.\r
+        With this variable, it becomes possible to tell\r
+         to apply a specific umask to the modes above.\r
+        The special value "user" indicates that the user's current umask will\r
+        be used. This should be enough for most projects, as it will lead to\r
+        the same permissions as  would use. The default\r
+        value remains 0, which means world read-write.\r
+</p>\r
+</dd>\r
+<dt>\r
 user.email\r
 </dt>\r
 <dd>\r
@@ -924,7 +949,7 @@ imap
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 15-Jul-2006 01:38:06 UTC\r
+Last updated 24-Jul-2006 08:24:53 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 977049948a552fe5365c591f60d6be91e66693ee..3c847e70839cb0e6d29ee136d28686e4ea5f7c2f 100644 (file)
@@ -317,7 +317,20 @@ It can be extracted using git-get-tar-commit-id.</p>
 </dd>\r
 </dl>\r
 </div>\r
-<h2>Examples</h2>\r
+<h2>CONFIGURATION</h2>\r
+<div class="sectionbody">\r
+<p>By default, file and directories modes are set to 0666 or 0777. It is\r
+possible to change this by setting the "umask" variable in the\r
+repository configuration as follows :</p>\r
+<div class="literalblock">\r
+<div class="content">\r
+<pre><tt>umask = 002     ;# group friendly</tt></pre>\r
+</div></div>\r
+<p>The special umask value "user" indicates that the user's current umask\r
+will be used instead. The default value remains 0, which means world\r
+readable/writable files and directories.</p>\r
+</div>\r
+<h2>EXAMPLES</h2>\r
 <div class="sectionbody">\r
 <dl>\r
 <dt>\r
@@ -371,7 +384,7 @@ git tar-tree --remote=example.com:git.git v1.4.0 &gt;git-1.4.0.tar
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 15-Jul-2006 01:38:17 UTC\r
+Last updated 24-Jul-2006 08:24:54 UTC\r
 </div>\r
 </div>\r
 </body>\r
index f2675c41933fc4f824f871cc9185a6a1bf010d2b..7a99acf2ec92f9bbab84b664d10bb442482c4911 100644 (file)
@@ -37,7 +37,20 @@ OPTIONS
        Instead of making a tar archive from local repository,
        retrieve a tar archive from a remote repository.
 
-Examples
+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 :
+
+[tar]
+        umask = 002    ;# group friendly
+
+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.
+
+EXAMPLES
 --------
 git tar-tree HEAD junk | (cd /var/tmp/ && tar xf -)::