Autogenerated HTML docs for v1.5.3.4-498-g9c514
authorJunio C Hamano <junio@hera.kernel.org>
Wed, 31 Oct 2007 05:57:20 +0000 (05:57 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Wed, 31 Oct 2007 05:57:20 +0000 (05:57 +0000)
14 files changed:
RelNotes-1.5.3.5.txt
cmds-foreignscminterface.txt
core-tutorial.html
core-tutorial.txt
git-bisect.html
git-bisect.txt
git-cvsexportcommit.html
git-cvsexportcommit.txt
git-merge.html
git-merge.txt
git-rev-list.html
git-rev-list.txt
git-svnimport.txt [deleted file]
git.html

index e28d92f61811f5ba3d31d71e299c209a3a6ea74b..bf6a279ede10ac88544058d010101a8b0052694e 100644 (file)
@@ -87,8 +87,14 @@ Fixes since v1.5.3.4
  * A few workarounds to squelch false warnings from recent gcc have
    been added.
 
+ * "git-send-pack $remote frotz" segfaulted when there is nothing
+   named 'frotz' on the local end.
+
+ * "git-rebase -interactive" did not handle its "--strategy" option
+   properly.
+
 --
 exec >/var/tmp/1
-O=v1.5.3.4-55-gf120ae2
+O=v1.5.3.4-65-gf91333d
 echo O=`git describe refs/heads/maint`
 git shortlog --no-merges $O..refs/heads/maint
index 8880bb9db83fc955e247a1bf97847724216fb33e..f6bde74d2ecb4b960b271fd0c9eb5d2afce3edb3 100644 (file)
@@ -25,6 +25,3 @@ gitlink:git-send-email[1]::
 gitlink:git-svn[1]::
        Bidirectional operation between a single Subversion branch and git.
 
-gitlink:git-svnimport[1]::
-       Import a SVN repository into git.
-
index 287b763800168cc11a3d68f474dcf5b3d36e6c5e..4618ffce77dca667877ff65a16d1fa53b0112b90 100644 (file)
@@ -1098,7 +1098,7 @@ script called <tt>git merge</tt>, which wants to know which branches you want
 to resolve and what the merge is all about:</p>\r
 <div class="listingblock">\r
 <div class="content">\r
-<pre><tt>$ git merge "Merge work in mybranch" HEAD mybranch</tt></pre>\r
+<pre><tt>$ git merge -m "Merge work in mybranch" mybranch</tt></pre>\r
 </div></div>\r
 <p>where the first argument is going to be used as the commit message if\r
 the merge can be resolved automatically.</p>\r
@@ -1175,7 +1175,7 @@ to the <tt>master</tt> branch. Let's go back to <tt>mybranch</tt>, and run
 <div class="listingblock">\r
 <div class="content">\r
 <pre><tt>$ git checkout mybranch\r
-$ git merge "Merge upstream changes." HEAD master</tt></pre>\r
+$ git merge -m "Merge upstream changes." master</tt></pre>\r
 </div></div>\r
 <p>This outputs something like this (the actual commit object names\r
 would be different)</p>\r
@@ -1885,8 +1885,8 @@ in both of them.  You could merge in <em>diff-fix</em> first and then
 <em>commit-fix</em> next, like this:</p>\r
 <div class="listingblock">\r
 <div class="content">\r
-<pre><tt>$ git merge 'Merge fix in diff-fix' master diff-fix\r
-$ git merge 'Merge fix in commit-fix' master commit-fix</tt></pre>\r
+<pre><tt>$ git merge -m 'Merge fix in diff-fix' diff-fix\r
+$ git merge -m 'Merge fix in commit-fix' commit-fix</tt></pre>\r
 </div></div>\r
 <p>Which would result in:</p>\r
 <div class="listingblock">\r
@@ -1948,7 +1948,7 @@ to follow, not easier.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 30-Oct-2007 08:23:11 UTC\r
+Last updated 31-Oct-2007 05:56:51 UTC\r
 </div>\r
 </div>\r
 </body>\r
index d8e78ac8f15013a5db9c8918723d3ee2850fe43e..5df97a1f9d5633657e4aad05a39acbf0d09e4a58 100644 (file)
@@ -878,7 +878,7 @@ script called `git merge`, which wants to know which branches you want
 to resolve and what the merge is all about:
 
 ------------
-$ git merge "Merge work in mybranch" HEAD mybranch
+$ git merge -m "Merge work in mybranch" mybranch
 ------------
 
 where the first argument is going to be used as the commit message if
@@ -965,7 +965,7 @@ to the `master` branch. Let's go back to `mybranch`, and run
 
 ------------
 $ git checkout mybranch
-$ git merge "Merge upstream changes." HEAD master
+$ git merge -m "Merge upstream changes." master
 ------------
 
 This outputs something like this (the actual commit object names
@@ -1607,8 +1607,8 @@ in both of them.  You could merge in 'diff-fix' first and then
 'commit-fix' next, like this:
 
 ------------
-$ git merge 'Merge fix in diff-fix' master diff-fix
-$ git merge 'Merge fix in commit-fix' master commit-fix
+$ git merge -m 'Merge fix in diff-fix' diff-fix
+$ git merge -m 'Merge fix in commit-fix' commit-fix
 ------------
 
 Which would result in:
index 10568129791490b5bdb7972117e2ef6abd385648..87f8c166535490ceb60712c730831e5c57babb64 100644 (file)
@@ -281,8 +281,9 @@ on the subcommand:</p>
 <div class="literalblock">\r
 <div class="content">\r
 <pre><tt>git bisect start [&lt;bad&gt; [&lt;good&gt;...]] [--] [&lt;paths&gt;...]\r
-git bisect bad &lt;rev&gt;\r
-git bisect good &lt;rev&gt;\r
+git bisect bad [&lt;rev&gt;]\r
+git bisect good [&lt;rev&gt;...]\r
+git bisect skip [&lt;rev&gt;...]\r
 git bisect reset [&lt;branch&gt;]\r
 git bisect visualize\r
 git bisect replay &lt;logfile&gt;\r
@@ -372,6 +373,16 @@ $ git reset --hard HEAD~3               # try 3 revs before what
 </div></div>\r
 <p>Then compile and test the one you chose to try. After that, tell\r
 bisect what the result was as usual.</p>\r
+<h3>Bisect skip</h3>\r
+<p>Instead of choosing by yourself a nearby commit, you may just want git\r
+to do it for you using:</p>\r
+<div class="listingblock">\r
+<div class="content">\r
+<pre><tt>$ git bisect skip                 # Current version cannot be tested</tt></pre>\r
+</div></div>\r
+<p>But computing the commit to test may be slower afterwards and git may\r
+eventually not be able to tell the first bad among a bad and one or\r
+more "skip"ped commits.</p>\r
 <h3>Cutting down bisection by giving more parameters to bisect start</h3>\r
 <p>You can further cut down the number of trials if you know what part of\r
 the tree is involved in the problem you are tracking down, by giving\r
@@ -398,12 +409,15 @@ or bad, you can automatically bisect using:</p>
 <pre><tt>$ git bisect run my_script</tt></pre>\r
 </div></div>\r
 <p>Note that the "run" script (<tt>my_script</tt> in the above example) should\r
-exit with code 0 in case the current source code is good and with a\r
-code between 1 and 127 (included) in case the current source code is\r
-bad.</p>\r
+exit with code 0 in case the current source code is good.  Exit with a\r
+code between 1 and 127 (inclusive), except 125, if the current\r
+source code is bad.</p>\r
 <p>Any other exit code will abort the automatic bisect process. (A\r
 program that does "exit(-1)" leaves $? = 255, see exit(3) manual page,\r
 the value is chopped with "&amp; 0377".)</p>\r
+<p>The special exit code 125 should be used when the current source code\r
+cannot be tested. If the "run" script exits with this code, the current\r
+revision will be skipped, see <tt>git bisect skip</tt> above.</p>\r
 <p>You may often find that during bisect you want to have near-constant\r
 tweaks (e.g., s/#define DEBUG 0/#define DEBUG 1/ in a header file, or\r
 "revision that does not have this commit needs this patch applied to\r
@@ -431,7 +445,7 @@ know the outcome.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 19-Jul-2007 02:09:31 UTC\r
+Last updated 31-Oct-2007 05:56:47 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 1072fb87d1fe38a74dc38e2d6886acfb44d9262b..4795349c10fd91c330ddde2d8397401be09cc86b 100644 (file)
@@ -16,8 +16,9 @@ The command takes various subcommands, and different options depending
 on the subcommand:
 
  git bisect start [<bad> [<good>...]] [--] [<paths>...]
- git bisect bad <rev>
- git bisect good <rev>
+ git bisect bad [<rev>]
+ git bisect good [<rev>...]
+ git bisect skip [<rev>...]
  git bisect reset [<branch>]
  git bisect visualize
  git bisect replay <logfile>
@@ -134,6 +135,20 @@ $ git reset --hard HEAD~3          # try 3 revs before what
 Then compile and test the one you chose to try. After that, tell
 bisect what the result was as usual.
 
+Bisect skip
+~~~~~~~~~~~~
+
+Instead of choosing by yourself a nearby commit, you may just want git
+to do it for you using:
+
+------------
+$ git bisect skip                 # Current version cannot be tested
+------------
+
+But computing the commit to test may be slower afterwards and git may
+eventually not be able to tell the first bad among a bad and one or
+more "skip"ped commits.
+
 Cutting down bisection by giving more parameters to bisect start
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
@@ -167,14 +182,18 @@ $ git bisect run my_script
 ------------
 
 Note that the "run" script (`my_script` in the above example) should
-exit with code 0 in case the current source code is good and with a
-code between 1 and 127 (included) in case the current source code is
-bad.
+exit with code 0 in case the current source code is good.  Exit with a
+code between 1 and 127 (inclusive), except 125, if the current
+source code is bad.
 
 Any other exit code will abort the automatic bisect process. (A
 program that does "exit(-1)" leaves $? = 255, see exit(3) manual page,
 the value is chopped with "& 0377".)
 
+The special exit code 125 should be used when the current source code
+cannot be tested. If the "run" script exits with this code, the current
+revision will be skipped, see `git bisect skip` above.
+
 You may often find that during bisect you want to have near-constant
 tweaks (e.g., s/#define DEBUG 0/#define DEBUG 1/ in a header file, or
 "revision that does not have this commit needs this patch applied to
index 7efb4aca1d875bcac0eb9a3a0544097c846f3721..4d233fab3869089fea52451196502d292ac79248 100644 (file)
@@ -382,7 +382,7 @@ Merge one patch into CVS
 <pre><tt>$ export GIT_DIR=~/project/.git\r
 $ cd ~/project_cvs_checkout\r
 $ git-cvsexportcommit -v &lt;commit-sha1&gt;\r
-$ cvs commit -F .mgs &lt;files&gt;</tt></pre>\r
+$ cvs commit -F .msg &lt;files&gt;</tt></pre>\r
 </div></div>\r
 </dd>\r
 <dt>\r
@@ -412,7 +412,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 25-Aug-2007 03:53:07 UTC\r
+Last updated 31-Oct-2007 05:56:47 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 4c8d1e638632bc67dcd74536dd6dd287b2604111..c3922f9238cf9f33d404665714fb0458122b6e43 100644 (file)
@@ -73,7 +73,7 @@ Merge one patch into CVS::
 $ export GIT_DIR=~/project/.git
 $ cd ~/project_cvs_checkout
 $ git-cvsexportcommit -v <commit-sha1>
-$ cvs commit -F .mgs <files>
+$ cvs commit -F .msg <files>
 ------------
 
 Merge pending patches into CVS automatically -- only if you really know what you are doing::
index 329795b6a0d476dde50bd40fd37d02b2f86af98b..f96f3ae3cd53f0b9344b3504fa60e5ddaf2de513 100644 (file)
@@ -274,12 +274,16 @@ git-merge(1) Manual Page
 <div class="sectionbody">\r
 <div class="verseblock">\r
 <div class="content"><em>git-merge</em> [-n] [--summary] [--no-commit] [--squash] [-s &lt;strategy&gt;]&#8230;\r
-        [-m &lt;msg&gt;] &lt;remote&gt; &lt;remote&gt;&#8230;</div></div>\r
+        [-m &lt;msg&gt;] &lt;remote&gt; &lt;remote&gt;&#8230;\r
+<em>git-merge</em> &lt;msg&gt; HEAD &lt;remote&gt;&#8230;</div></div>\r
 </div>\r
 <h2>DESCRIPTION</h2>\r
 <div class="sectionbody">\r
 <p>This is the top-level interface to the merge machinery\r
 which drives multiple merge strategy scripts.</p>\r
+<p>The second syntax (&lt;msg&gt; <tt>HEAD</tt> &lt;remote&gt;) is supported for\r
+historical reasons.  Do not use it from the command line or in\r
+new scripts.  It is the same as <tt>git merge -m &lt;msg&gt; &lt;remote&gt;</tt>.</p>\r
 </div>\r
 <h2>OPTIONS</h2>\r
 <div class="sectionbody">\r
@@ -375,7 +379,7 @@ which drives multiple merge strategy scripts.</p>
 </p>\r
 </dd>\r
 <dt>\r
-&lt;msg&gt;\r
+-m &lt;msg&gt;\r
 </dt>\r
 <dd>\r
 <p>\r
@@ -385,15 +389,6 @@ which drives multiple merge strategy scripts.</p>
 </p>\r
 </dd>\r
 <dt>\r
-&lt;head&gt;\r
-</dt>\r
-<dd>\r
-<p>\r
-        Our branch head commit.  This has to be <tt>HEAD</tt>, so new\r
-        syntax does not require it\r
-</p>\r
-</dd>\r
-<dt>\r
 &lt;remote&gt;\r
 </dt>\r
 <dd>\r
@@ -653,7 +648,7 @@ Resolve the conflicts.  <tt>git-diff</tt> would report only the
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 03-Oct-2007 12:03:50 UTC\r
+Last updated 31-Oct-2007 05:56:48 UTC\r
 </div>\r
 </div>\r
 </body>\r
index bca4212e565c95f79a76a14cc4444e72e472a22c..eabd7ef33f6c01322fc3794341c8982573b516a4 100644 (file)
@@ -11,26 +11,27 @@ SYNOPSIS
 [verse]
 'git-merge' [-n] [--summary] [--no-commit] [--squash] [-s <strategy>]...
        [-m <msg>] <remote> <remote>...
+'git-merge' <msg> HEAD <remote>...
 
 DESCRIPTION
 -----------
 This is the top-level interface to the merge machinery
 which drives multiple merge strategy scripts.
 
+The second syntax (<msg> `HEAD` <remote>) is supported for
+historical reasons.  Do not use it from the command line or in
+new scripts.  It is the same as `git merge -m <msg> <remote>`.
+
 
 OPTIONS
 -------
 include::merge-options.txt[]
 
-<msg>::
+-m <msg>::
        The commit message to be used for the merge commit (in case
        it is created). The `git-fmt-merge-msg` script can be used
        to give a good default for automated `git-merge` invocations.
 
-<head>::
-       Our branch head commit.  This has to be `HEAD`, so new
-       syntax does not require it
-
 <remote>::
        Other branch head merged into our branch.  You need at
        least one <remote>.  Specifying more than one <remote>
index 46863a4d309695952ffe1f6d21d697b2442f2ec2..36d93a3c7aa57e5d370fcc06f414678edc23a73e 100644 (file)
@@ -298,6 +298,7 @@ git-rev-list(1) Manual Page
              [ --pretty | --header ]\r
              [ --bisect ]\r
              [ --bisect-vars ]\r
+             [ --bisect-all ]\r
              [ --merge ]\r
              [ --reverse ]\r
              [ --walk-reflogs ]\r
@@ -753,6 +754,23 @@ turns out to be bad to <tt>bisect_bad</tt>, and the number of commits
 we are bisecting right now to <tt>bisect_all</tt>.\r
 </p>\r
 </dd>\r
+<dt>\r
+--bisect-all\r
+</dt>\r
+<dd>\r
+<p>\r
+This outputs all the commit objects between the included and excluded\r
+commits, ordered by their distance to the included and excluded\r
+commits. The farthest from them is displayed first. (This is the only\r
+one displayed by <tt>--bisect</tt>.)\r
+</p>\r
+<p>This is useful because it makes it easy to choose a good commit to\r
+test when you want to avoid to test some of them for some reason (they\r
+may not compile for example).</p>\r
+<p>This option can be used along with <tt>--bisect-vars</tt>, in this case,\r
+after all the sorted commit objects, there will be the same text as if\r
+<tt>--bisect-vars</tt> had been used alone.</p>\r
+</dd>\r
 </dl>\r
 <h3>Commit Ordering</h3>\r
 <p>By default, the commits are shown in reverse chronological order.</p>\r
@@ -1144,7 +1162,7 @@ and the git-list &lt;git@vger.kernel.org&gt;.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 25-Aug-2007 03:53:13 UTC\r
+Last updated 31-Oct-2007 05:56:48 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 7cd0e8913e8ec08b7e125676384e973b585c306b..485280423e90bac43b4c372bbc8d350c34cf4fa8 100644 (file)
@@ -34,6 +34,7 @@ SYNOPSIS
             [ \--pretty | \--header ]
             [ \--bisect ]
             [ \--bisect-vars ]
+            [ \--bisect-all ]
             [ \--merge ]
             [ \--reverse ]
             [ \--walk-reflogs ]
@@ -354,6 +355,21 @@ the expected number of commits to be tested if `bisect_rev`
 turns out to be bad to `bisect_bad`, and the number of commits
 we are bisecting right now to `bisect_all`.
 
+--bisect-all::
+
+This outputs all the commit objects between the included and excluded
+commits, ordered by their distance to the included and excluded
+commits. The farthest from them is displayed first. (This is the only
+one displayed by `--bisect`.)
+
+This is useful because it makes it easy to choose a good commit to
+test when you want to avoid to test some of them for some reason (they
+may not compile for example).
+
+This option can be used along with `--bisect-vars`, in this case,
+after all the sorted commit objects, there will be the same text as if
+`--bisect-vars` had been used alone.
+
 --
 
 Commit Ordering
diff --git a/git-svnimport.txt b/git-svnimport.txt
deleted file mode 100644 (file)
index 71aad8b..0000000
+++ /dev/null
@@ -1,179 +0,0 @@
-git-svnimport(1)
-================
-v0.1, July 2005
-
-NAME
-----
-git-svnimport - Import a SVN repository into git
-
-
-SYNOPSIS
---------
-[verse]
-'git-svnimport' [ -o <branch-for-HEAD> ] [ -h ] [ -v ] [ -d | -D ]
-               [ -C <GIT_repository> ] [ -i ] [ -u ] [-l limit_rev]
-               [ -b branch_subdir ] [ -T trunk_subdir ] [ -t tag_subdir ]
-               [ -s start_chg ] [ -m ] [ -r ] [ -M regex ]
-               [ -I <ignorefile_name> ] [ -A <author_file> ]
-               [ -R <repack_each_revs>] [ -P <path_from_trunk> ]
-               <SVN_repository_URL> [ <path> ]
-
-
-DESCRIPTION
------------
-Imports a SVN repository into git. It will either create a new
-repository, or incrementally import into an existing one.
-
-SVN access is done by the SVN::Perl module.
-
-git-svnimport assumes that SVN repositories are organized into one
-"trunk" directory where the main development happens, "branches/FOO"
-directories for branches, and "/tags/FOO" directories for tags.
-Other subdirectories are ignored.
-
-git-svnimport creates a file ".git/svn2git", which is required for
-incremental SVN imports.
-
-OPTIONS
--------
--C <target-dir>::
-        The GIT repository to import to.  If the directory doesn't
-        exist, it will be created.  Default is the current directory.
-
--s <start_rev>::
-        Start importing at this SVN change number. The  default is 1.
-+
-When importing incrementally, you might need to edit the .git/svn2git file.
-
--i::
-       Import-only: don't perform a checkout after importing.  This option
-       ensures the working directory and index remain untouched and will
-       not create them if they do not exist.
-
--T <trunk_subdir>::
-       Name the SVN trunk. Default "trunk".
-
--t <tag_subdir>::
-       Name the SVN subdirectory for tags. Default "tags".
-
--b <branch_subdir>::
-       Name the SVN subdirectory for branches. Default "branches".
-
--o <branch-for-HEAD>::
-       The 'trunk' branch from SVN is imported to the 'origin' branch within
-       the git repository. Use this option if you want to import into a
-       different branch.
-
--r::
-       Prepend 'rX: ' to commit messages, where X is the imported
-       subversion revision.
-
--u::
-       Replace underscores in tag names with periods.
-
--I <ignorefile_name>::
-       Import the svn:ignore directory property to files with this
-       name in each directory. (The Subversion and GIT ignore
-       syntaxes are similar enough that using the Subversion patterns
-       directly with "-I .gitignore" will almost always just work.)
-
--A <author_file>::
-       Read a file with lines on the form
-+
-------
-       username = User's Full Name <email@addr.es>
-
-------
-+
-and use "User's Full Name <email@addr.es>" as the GIT
-author and committer for Subversion commits made by
-"username". If encountering a commit made by a user not in the
-list, abort.
-+
-For convenience, this data is saved to $GIT_DIR/svn-authors
-each time the -A option is provided, and read from that same
-file each time git-svnimport is run with an existing GIT
-repository without -A.
-
--m::
-       Attempt to detect merges based on the commit message. This option
-       will enable default regexes that try to capture the name source
-       branch name from the commit message.
-
--M <regex>::
-       Attempt to detect merges based on the commit message with a custom
-       regex. It can be used with -m to also see the default regexes.
-       You must escape forward slashes.
-
--l <max_rev>::
-       Specify a maximum revision number to pull.
-+
-Formerly, this option controlled how many revisions to pull,
-due to SVN memory leaks. (These have been worked around.)
-
--R <repack_each_revs>::
-       Specify how often git repository should be repacked.
-+
-The default value is 1000. git-svnimport will do import in chunks of 1000
-revisions, after each chunk git repository will be repacked. To disable
-this behavior specify some big value here which is mote than number of
-revisions to import.
-
--P <path_from_trunk>::
-       Partial import of the SVN tree.
-+
-By default, the whole tree on the SVN trunk (/trunk) is imported.
-'-P my/proj' will import starting only from '/trunk/my/proj'.
-This option is useful when you want to import one project from a
-svn repo which hosts multiple projects under the same trunk.
-
--v::
-       Verbosity: let 'svnimport' report what it is doing.
-
--d::
-       Use direct HTTP requests if possible. The "<path>" argument is used
-       only for retrieving the SVN logs; the path to the contents is
-       included in the SVN log.
-
--D::
-       Use direct HTTP requests if possible. The "<path>" argument is used
-       for retrieving the logs, as well as for the contents.
-+
-There's no safe way to automatically find out which of these options to
-use, so you need to try both. Usually, the one that's wrong will die
-with a 40x error pretty quickly.
-
-<SVN_repository_URL>::
-       The URL of the SVN module you want to import. For local
-       repositories, use "file:///absolute/path".
-+
-If you're using the "-d" or "-D" option, this is the URL of the SVN
-repository itself; it usually ends in "/svn".
-
-<path>::
-       The path to the module you want to check out.
-
--h::
-       Print a short usage message and exit.
-
-OUTPUT
-------
-If '-v' is specified, the script reports what it is doing.
-
-Otherwise, success is indicated the Unix way, i.e. by simply exiting with
-a zero exit status.
-
-Author
-------
-Written by Matthias Urlichs <smurf@smurf.noris.de>, with help from
-various participants of the git-list <git@vger.kernel.org>.
-
-Based on a cvs2git script by the same author.
-
-Documentation
---------------
-Documentation by Matthias Urlichs <smurf@smurf.noris.de>.
-
-GIT
----
-Part of the gitlink:git[7] suite
index 6750abeb5dd57caed45c595251462769b9001b7b..1a5c7ca94b413eef94565686e0c9846e33193219 100644 (file)
--- a/git.html
+++ b/git.html
@@ -971,14 +971,6 @@ people via patch over e-mail.</p>
         Bidirectional operation between a single Subversion branch and git.\r
 </p>\r
 </dd>\r
-<dt>\r
-<a href="git-svnimport.html">git-svnimport(1)</a>\r
-</dt>\r
-<dd>\r
-<p>\r
-        Import a SVN repository into git.\r
-</p>\r
-</dd>\r
 </dl>\r
 </div>\r
 <h2>Low-level commands (plumbing)</h2>\r
@@ -1957,7 +1949,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 24-Oct-2007 11:51:42 UTC\r
+Last updated 31-Oct-2007 05:56:51 UTC\r
 </div>\r
 </div>\r
 </body>\r