Autogenerated HTML docs for v1.5.0.3-316-gbd1fc
authorJunio C Hamano <junio@hera.kernel.org>
Fri, 9 Mar 2007 09:06:40 +0000 (09:06 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Fri, 9 Mar 2007 09:06:40 +0000 (09:06 +0000)
git-config.html
git-config.txt
git-fast-import.html
git-fast-import.txt
git.html

index f8f1a0a5e028cc93f0f8feaae1ed467ab48ff583..78161b6d32ab7fd9442fe93af63fb7fd281d12c8 100644 (file)
@@ -280,6 +280,8 @@ git-config(1) Manual Page
 <em>git-config</em> [--global] [type] --get-all name [value_regex]\r
 <em>git-config</em> [--global] [type] --unset name [value_regex]\r
 <em>git-config</em> [--global] [type] --unset-all name [value_regex]\r
+<em>git-config</em> [--global] [type] --rename-section old_name new_name\r
+<em>git-config</em> [--global] [type] --remove-section name\r
 <em>git-config</em> [--global] -l | --list</div></div>\r
 </div>\r
 <h2>DESCRIPTION</h2>\r
@@ -394,6 +396,22 @@ you use --global option without $HOME being properly set.
 </p>\r
 </dd>\r
 <dt>\r
+--remove-section\r
+</dt>\r
+<dd>\r
+<p>\r
+        Remove the given section from the configuration file.\r
+</p>\r
+</dd>\r
+<dt>\r
+--rename-section\r
+</dt>\r
+<dd>\r
+<p>\r
+        Rename the given section to a new name.\r
+</p>\r
+</dd>\r
+<dt>\r
 --unset\r
 </dt>\r
 <dd>\r
@@ -1491,7 +1509,7 @@ transfer.unpackLimit
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 05-Mar-2007 02:37:02 UTC\r
+Last updated 09-Mar-2007 09:06:21 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 6624484fe1b0e50f8d32ad474da6455cf737e43a..68de5881bd36aabd1b4b13c2bce48a226c34788e 100644 (file)
@@ -16,6 +16,8 @@ SYNOPSIS
 'git-config' [--global] [type] --get-all name [value_regex]
 'git-config' [--global] [type] --unset name [value_regex]
 'git-config' [--global] [type] --unset-all name [value_regex]
+'git-config' [--global] [type] --rename-section old_name new_name
+'git-config' [--global] [type] --remove-section name
 'git-config' [--global] -l | --list
 
 DESCRIPTION
@@ -74,6 +76,12 @@ OPTIONS
 --global::
        Use global ~/.gitconfig file rather than the repository .git/config.
 
+--remove-section::
+       Remove the given section from the configuration file.
+
+--rename-section::
+       Rename the given section to a new name.
+
 --unset::
        Remove the line matching the key from config file.
 
index 5d50a332d270ed0f1c4f0311bb2d59f4be48ecac..6ff782cf3e4813ead7fa6b66e7de8b9c6bb4ed90 100644 (file)
@@ -353,7 +353,23 @@ the frontend program in use.</p>
         Dumps the internal marks table to &lt;file&gt; when complete.\r
         Marks are written one per line as <tt>:markid SHA-1</tt>.\r
         Frontends can use this file to validate imports after they\r
-        have been completed.\r
+        have been completed, or to save the marks table across\r
+        incremental runs.  As &lt;file&gt; is only opened and truncated\r
+        at checkpoint (or completion) the same path can also be\r
+        safely given to --import-marks.\r
+</p>\r
+</dd>\r
+<dt>\r
+--import-marks=&lt;file&gt;\r
+</dt>\r
+<dd>\r
+<p>\r
+        Before processing any input, load the marks specified in\r
+        &lt;file&gt;.  The input file must exist, must be readable, and\r
+        must use the same format as produced by --export-marks.\r
+        Multiple options may be supplied to import more than one\r
+        set of marks.  If a mark is defined to different values,\r
+        the last file wins.\r
 </p>\r
 </dd>\r
 <dt>\r
@@ -1188,7 +1204,7 @@ memory footprint (less than 2.7 MiB per active branch).</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 14-Feb-2007 07:23:34 UTC\r
+Last updated 09-Mar-2007 09:06:22 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 77a14bb076b6d8be624345ee10e4bd14cfb2c359..7e3d2b1a96a3ef6819a0f3ccebf8f717de9d32dc 100644 (file)
@@ -62,7 +62,18 @@ OPTIONS
        Dumps the internal marks table to <file> when complete.
        Marks are written one per line as `:markid SHA-1`.
        Frontends can use this file to validate imports after they
-       have been completed.
+       have been completed, or to save the marks table across
+       incremental runs.  As <file> is only opened and truncated
+       at checkpoint (or completion) the same path can also be
+       safely given to \--import-marks.
+
+--import-marks=<file>::
+       Before processing any input, load the marks specified in
+       <file>.  The input file must exist, must be readable, and
+       must use the same format as produced by \--export-marks.
+       Multiple options may be supplied to import more than one
+       set of marks.  If a mark is defined to different values,
+       the last file wins.
 
 --export-pack-edges=<file>::
        After creating a packfile, print a line of data to
index 9824b518318647cb8361790c2de454fdefeaf479..dfa7207506a37421887c20b6b384db874590ff6a 100644 (file)
--- a/git.html
+++ b/git.html
@@ -2309,7 +2309,7 @@ contributors on the git-list &lt;git@vger.kernel.org&gt;.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 08-Mar-2007 02:42:39 UTC\r
+Last updated 09-Mar-2007 09:06:24 UTC\r
 </div>\r
 </div>\r
 </body>\r