Autogenerated HTML docs for v1.5.0-rc1-gb60d
authorJunio C Hamano <junio@hera.kernel.org>
Sat, 13 Jan 2007 08:09:17 +0000 (08:09 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Sat, 13 Jan 2007 08:09:17 +0000 (08:09 +0000)
26 files changed:
config.txt
core-tutorial.html
core-tutorial.txt
cvs-migration.html
cvs-migration.txt
git-commit.html
git-commit.txt
git-init.html
git-init.txt
git-p4import.html
git-p4import.txt
git-prune-packed.html
git-prune-packed.txt
git-repo-config.html
git-svn.html
git-svn.txt
git.html
git.txt
glossary.html
glossary.txt
hooks.html
hooks.txt
howto-index.html
howto/setup-git-server-over-http.txt
repository-layout.html
repository-layout.txt

index b4aae0d0aeba86e995b37a5fe3ab7ec61e268687..f7dba8977f4eb9a59171247250e136a33b1f7533 100644 (file)
@@ -100,7 +100,7 @@ core.sharedRepository::
        group-writable). When 'all' (or 'world' or 'everybody'), the
        repository will be readable by all users, additionally to being
        group-shareable. When 'umask' (or 'false'), git will use permissions
-       reported by umask(2). See gitlink:git-init-db[1]. False by default.
+       reported by umask(2). See gitlink:git-init[1]. False by default.
 
 core.warnAmbiguousRefs::
        If true, git will warn you if the ref name you passed it is ambiguous
index 8927cbb74ee061fcc01124f8950ef8073c7c56a2..dd84bf09935521e2b2a967a9ceb6090355cbd428 100644 (file)
@@ -309,12 +309,12 @@ to import into git.</p>
 <p>For our first example, we're going to start a totally new repository from\r
 scratch, with no pre-existing files, and we'll call it <tt>git-tutorial</tt>.\r
 To start up, create a subdirectory for it, change into that\r
-subdirectory, and initialize the git infrastructure with <tt>git-init-db</tt>:</p>\r
+subdirectory, and initialize the git infrastructure with <tt>git-init</tt>:</p>\r
 <div class="listingblock">\r
 <div class="content">\r
 <pre><tt>$ mkdir git-tutorial\r
 $ cd git-tutorial\r
-$ git-init-db</tt></pre>\r
+$ git-init</tt></pre>\r
 </div></div>\r
 <p>to which git will reply</p>\r
 <div class="listingblock">\r
@@ -1613,11 +1613,11 @@ an empty directory:</p>
 <pre><tt>$ mkdir my-git.git</tt></pre>\r
 </div></div>\r
 <p>Then, make that directory into a git repository by running\r
-<tt>git init-db</tt>, but this time, since its name is not the usual\r
+<tt>git init</tt>, but this time, since its name is not the usual\r
 <tt>.git</tt>, we do things slightly differently:</p>\r
 <div class="listingblock">\r
 <div class="content">\r
-<pre><tt>$ GIT_DIR=my-git.git git-init-db</tt></pre>\r
+<pre><tt>$ GIT_DIR=my-git.git git-init</tt></pre>\r
 </div></div>\r
 <p>Make sure this directory is available for others you want your\r
 changes to be pulled by via the transport of your choice. Also\r
@@ -1761,7 +1761,7 @@ Prepare a public repository accessible to others.
 </p>\r
 <p>If other people are pulling from your repository over dumb\r
 transport protocols (HTTP), you need to keep this repository\r
-<em>dumb transport friendly</em>.  After <tt>git init-db</tt>,\r
+<em>dumb transport friendly</em>.  After <tt>git init</tt>,\r
 <tt>$GIT_DIR/hooks/post-update</tt> copied from the standard templates\r
 would contain a call to <tt>git-update-server-info</tt> but the\r
 <tt>post-update</tt> hook itself is disabled by default &#8212; enable it\r
@@ -2004,7 +2004,7 @@ to follow, not easier.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 16-Dec-2006 07:43:55 UTC\r
+Last updated 13-Jan-2007 08:09:05 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 5ea611748c6da80ee7df0387c5c5021a7095f45e..0cd33fb5b7485f54861d30c896c183535413ad0d 100644 (file)
@@ -46,12 +46,12 @@ to import into git.
 For our first example, we're going to start a totally new repository from
 scratch, with no pre-existing files, and we'll call it `git-tutorial`.
 To start up, create a subdirectory for it, change into that
-subdirectory, and initialize the git infrastructure with `git-init-db`:
+subdirectory, and initialize the git infrastructure with `git-init`:
 
 ------------------------------------------------
 $ mkdir git-tutorial
 $ cd git-tutorial
-$ git-init-db
+$ git-init
 ------------------------------------------------
 
 to which git will reply
@@ -1371,11 +1371,11 @@ $ mkdir my-git.git
 ------------
 
 Then, make that directory into a git repository by running
-`git init-db`, but this time, since its name is not the usual
+`git init`, but this time, since its name is not the usual
 `.git`, we do things slightly differently:
 
 ------------
-$ GIT_DIR=my-git.git git-init-db
+$ GIT_DIR=my-git.git git-init
 ------------
 
 Make sure this directory is available for others you want your
@@ -1511,7 +1511,7 @@ A recommended workflow for a "project lead" goes like this:
 +
 If other people are pulling from your repository over dumb
 transport protocols (HTTP), you need to keep this repository
-'dumb transport friendly'.  After `git init-db`,
+'dumb transport friendly'.  After `git init`,
 `$GIT_DIR/hooks/post-update` copied from the standard templates
 would contain a call to `git-update-server-info` but the
 `post-update` hook itself is disabled by default -- enable it
index e882687eea308ab90533a7fc70d5a5008b47ad4f..249264969d7ea0d0ee3d9f61faf5a1aa93283f22 100644 (file)
@@ -338,7 +338,7 @@ it:</p>
 <div class="content">\r
 <pre><tt>$ mkdir /pub/my-repo.git\r
 $ cd /pub/my-repo.git\r
-$ git --bare init-db --shared\r
+$ git --bare init --shared\r
 $ git --bare fetch /home/alice/myproject master:master</tt></pre>\r
 </div></div>\r
 <p>Next, give every team member read/write access to this repository.  One\r
@@ -416,7 +416,7 @@ repositories without the need for a central maintainer.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 01-Jan-2007 03:20:16 UTC\r
+Last updated 13-Jan-2007 08:09:07 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 8e09beaa799dbff462b258e5593fd5c79c91312a..775bf4266a769e3ad2ca6eb14333b2c569b98698 100644 (file)
@@ -80,7 +80,7 @@ it:
 ------------------------------------------------
 $ mkdir /pub/my-repo.git
 $ cd /pub/my-repo.git
-$ git --bare init-db --shared
+$ git --bare init --shared
 $ git --bare fetch /home/alice/myproject master:master
 ------------------------------------------------
 
index 849254d2ccd8b86a0c62d5879dc2bc6c2842b741..7575c77085fb4115bed7a31a029b313cef8abfdd 100644 (file)
@@ -383,12 +383,8 @@ that, you can recover from it with <a href="git-reset.html">git-reset(1)</a>.</p
 </dt>\r
 <dd>\r
 <p>\r
-        By default, the command looks for suspicious lines the\r
-        commit introduces, and aborts committing if there is one.\r
-        The definition of <em>suspicious lines</em> is currently the\r
-        lines that has trailing whitespaces, and the lines whose\r
-        indentation has a SP character immediately followed by a\r
-        TAB character.  This option turns off the check.\r
+        This option bypasses the pre-commit hook.\r
+        See also <a href="hooks.html">hooks</a>.\r
 </p>\r
 </dd>\r
 <dt>\r
@@ -654,7 +650,7 @@ Junio C Hamano &lt;junkio@cox.net&gt;</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 31-Dec-2006 01:19:02 UTC\r
+Last updated 13-Jan-2007 08:09:00 UTC\r
 </div>\r
 </div>\r
 </body>\r
index a7adf24fa5a601f372099988c1fedfb929ceaab1..cb081cda891e6a740b6a1d2772789aabf923bf69 100644 (file)
@@ -72,12 +72,8 @@ OPTIONS
        Add Signed-off-by line at the end of the commit message.
 
 --no-verify::
-       By default, the command looks for suspicious lines the
-       commit introduces, and aborts committing if there is one.
-       The definition of 'suspicious lines' is currently the
-       lines that has trailing whitespaces, and the lines whose
-       indentation has a SP character immediately followed by a
-       TAB character.  This option turns off the check.
+       This option bypasses the pre-commit hook.
+       See also link:hooks.html[hooks].
 
 -e|--edit::
        The message taken from file with `-F`, command line with
index b400c4a25ec3e8cc5339ed644889a19db3c062ba..badaeb5f2628bcc3e876d6a7d8d60b8f4accf9ec 100644 (file)
@@ -351,9 +351,7 @@ was primarily meant to initialize the object database, but over
 time it has become responsible for setting up the other aspects\r
 of the repository, such as installing the default hooks and\r
 setting the configuration variables.  The old name is retained\r
-because people are so used to it and many existing documents\r
-refer to it that way, and this will not change for some time to\r
-come.</p>\r
+for backward compatibility reasons.</p>\r
 </div>\r
 <h2>EXAMPLES</h2>\r
 <div class="sectionbody">\r
@@ -397,7 +395,7 @@ add all existing file to the index
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 12-Jan-2007 02:43:35 UTC\r
+Last updated 13-Jan-2007 08:09:00 UTC\r
 </div>\r
 </div>\r
 </body>\r
index e1fd6884f066c3f501394173d27df26717b9be85..596b567c90fc53b3662d31478ad57c8559eafab0 100644 (file)
@@ -79,9 +79,7 @@ was primarily meant to initialize the object database, but over
 time it has become responsible for setting up the other aspects
 of the repository, such as installing the default hooks and
 setting the configuration variables.  The old name is retained
-because people are so used to it and many existing documents
-refer to it that way, and this will not change for some time to
-come.
+for backward compatibility reasons.
 
 
 EXAMPLES
index 99ab519c4f418d31386b12686001a1a2a17b8063..1b218a828deb571a0a4a0c00cff1c064dc0351cd 100644 (file)
@@ -396,7 +396,7 @@ perforce branch into a branch named "jammy", like so:</p>
 <div class="content">\r
 <pre><tt>$ mkdir -p /home/sean/import/jam\r
 $ cd /home/sean/import/jam\r
-$ git init-db\r
+$ git init\r
 $ git p4import //public/jam jammy</tt></pre>\r
 </div></div>\r
 </div>\r
@@ -461,7 +461,7 @@ of mappings with each line containing one mapping in the format:</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 03-Oct-2006 08:41:15 UTC\r
+Last updated 13-Jan-2007 08:09:01 UTC\r
 </div>\r
 </div>\r
 </body>\r
index ee9e8fa9090f88d1eb45ddbdb73866e0dc1fd53d..6edb9f12b87e2bc24fb69c8615e1798bb813e14e 100644 (file)
@@ -93,7 +93,7 @@ perforce branch into a branch named "jammy", like so:
 ------------
 $ mkdir -p /home/sean/import/jam
 $ cd /home/sean/import/jam
-$ git init-db
+$ git init
 $ git p4import //public/jam jammy
 ------------
 
index 82685e53279a818fd796944331c45e6024bf3345..dc3ebd039a7e180fccf20a934fd9a4f1e84962e6 100644 (file)
@@ -272,7 +272,7 @@ git-prune-packed(1) Manual Page
 </div>\r
 <h2>SYNOPSIS</h2>\r
 <div class="sectionbody">\r
-<p><em>git-prune-packed</em> [-n]</p>\r
+<p><em>git-prune-packed</em> [-n] [-q]</p>\r
 </div>\r
 <h2>DESCRIPTION</h2>\r
 <div class="sectionbody">\r
@@ -296,6 +296,14 @@ disk storage, etc.</p>
         removed.\r
 </p>\r
 </dd>\r
+<dt>\r
+-q\r
+</dt>\r
+<dd>\r
+<p>\r
+        Squelch the progress indicator.\r
+</p>\r
+</dd>\r
 </dl>\r
 </div>\r
 <h2>Author</h2>\r
@@ -317,7 +325,7 @@ disk storage, etc.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 03-Oct-2006 08:41:17 UTC\r
+Last updated 13-Jan-2007 08:09:01 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 234882685d923d632c4e09a38cb9ba18439dda4a..a79193fb007bcaa8dc47b2763e4167a6f31a3dff 100644 (file)
@@ -9,7 +9,7 @@ residing in a pack file.
 
 SYNOPSIS
 --------
-'git-prune-packed' [-n]
+'git-prune-packed' [-n] [-q]
 
 
 DESCRIPTION
@@ -32,6 +32,9 @@ OPTIONS
         Don't actually remove any objects, only show those that would have been
         removed.
 
+-q::
+       Squelch the progress indicator.
+
 Author
 ------
 Written by Linus Torvalds <torvalds@osdl.org>
index 78ca7305cc7ea6d9ceebec0ee113a0cfa1e7256a..97ff00c2583d4b04d313bd590134ca3f578ca3b1 100644 (file)
@@ -690,7 +690,7 @@ core.sharedRepository
         group-writable). When <em>all</em> (or <em>world</em> or <em>everybody</em>), the\r
         repository will be readable by all users, additionally to being\r
         group-shareable. When <em>umask</em> (or <em>false</em>), git will use permissions\r
-        reported by umask(2). See <a href="git-init-db.html">git-init-db(1)</a>. False by default.\r
+        reported by umask(2). See <a href="git-init.html">git-init(1)</a>. False by default.\r
 </p>\r
 </dd>\r
 <dt>\r
@@ -1268,7 +1268,7 @@ receive.denyNonFastForwards
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 08-Jan-2007 06:53:19 UTC\r
+Last updated 13-Jan-2007 08:09:02 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 49e63b689ba3c63828b78102d12d20ff87e0b6d0..954cf47db6f22bdb315cad66827d47c989f68107 100644 (file)
@@ -514,7 +514,7 @@ manually joining branches on commit.</p>
 <dd>\r
 <p>\r
         Only used with the <em>init</em> command.\r
-        These are passed directly to <a href="git-init-db.html">git-init-db(1)</a>.\r
+        These are passed directly to <a href="git-init.html">git-init(1)</a>.\r
 </p>\r
 </dd>\r
 <dt>\r
@@ -786,7 +786,7 @@ SVN was very wrong.</p>
 <p>Tracking and contributing to a the trunk of a Subversion-managed project:</p>\r
 <div class="listingblock">\r
 <div class="content">\r
-<pre><tt># Initialize a repo (like git init-db):\r
+<pre><tt># Initialize a repo (like git init):\r
         git-svn init http://svn.foo.org/project/trunk\r
 # Fetch remote revisions:\r
         git-svn fetch\r
@@ -806,7 +806,7 @@ See also:
 <em><a href="#tracking-multiple-repos">Tracking Multiple Repositories or Branches</a></em></p>\r
 <div class="listingblock">\r
 <div class="content">\r
-<pre><tt># Initialize a repo (like git init-db):\r
+<pre><tt># Initialize a repo (like git init):\r
         git-svn multi-init http://svn.foo.org/project \\r
                 -T trunk -b branches -t tags\r
 # Fetch remote revisions:\r
@@ -911,7 +911,7 @@ detect them.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 10-Jan-2007 05:05:02 UTC\r
+Last updated 13-Jan-2007 08:09:03 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 1b013139af0359458c7abae2a12c8da608041849..9ed721118b7dd446657fe28968e1294ab9fbf421 100644 (file)
@@ -171,7 +171,7 @@ OPTIONS
 --shared::
 --template=<template_directory>::
        Only used with the 'init' command.
-       These are passed directly to gitlink:git-init-db[1].
+       These are passed directly to gitlink:git-init[1].
 
 -r <ARG>::
 --revision <ARG>::
@@ -367,7 +367,7 @@ Basic Examples
 Tracking and contributing to a the trunk of a Subversion-managed project:
 
 ------------------------------------------------------------------------
-# Initialize a repo (like git init-db):
+# Initialize a repo (like git init):
        git-svn init http://svn.foo.org/project/trunk
 # Fetch remote revisions:
        git-svn fetch
@@ -388,7 +388,7 @@ See also:
 '<<tracking-multiple-repos,Tracking Multiple Repositories or Branches>>'
 
 ------------------------------------------------------------------------
-# Initialize a repo (like git init-db):
+# Initialize a repo (like git init):
        git-svn multi-init http://svn.foo.org/project \
                -T trunk -b branches -t tags
 # Fetch remote revisions:
index bbc3ec0d80c630e1c2ebb617a4acee48e59f6f12..da533ba67f5cb78d6d04d73564a06a50a84af7a2 100644 (file)
--- a/git.html
+++ b/git.html
@@ -1046,12 +1046,9 @@ repositories.</p>
 <dt>\r
 <a href="git-init.html">git-init(1)</a>\r
 </dt>\r
-<dt>\r
-<a href="git-init-db.html">git-init-db(1)</a>\r
-</dt>\r
 <dd>\r
 <p>\r
-        Creates an empty git object database, or reinitialize an\r
+        Creates an empty git repository, or reinitialize an\r
         existing one.\r
 </p>\r
 </dd>\r
@@ -2288,7 +2285,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-Jan-2007 06:53:21 UTC\r
+Last updated 13-Jan-2007 08:09:04 UTC\r
 </div>\r
 </div>\r
 </body>\r
diff --git a/git.txt b/git.txt
index 5662cdc27cb35786e72dcf9c0db74009a3cba4aa..f89d745efa73a9e22537aadb5c36857f04f030ec 100644 (file)
--- a/git.txt
+++ b/git.txt
@@ -354,8 +354,7 @@ gitlink:git-index-pack[1]::
        Build pack idx file for an existing packed archive.
 
 gitlink:git-init[1]::
-gitlink:git-init-db[1]::
-       Creates an empty git object database, or reinitialize an
+       Creates an empty git repository, or reinitialize an
        existing one.
 
 gitlink:git-merge-file[1]::
index e3f8f2189df939eb84f83935bde58e54a4c8c9ae..06658c0559c956bad4115f4e9eaa93cc04688367 100644 (file)
@@ -804,8 +804,8 @@ div.exampleblock-content {
         <a href="#ref_branch">branch</a> <a href="#ref_head">head</a>". And <tt>git <a href="#ref_push">push</a>\r
         $URL refs/heads/<a href="#ref_master">master</a>:refs/heads/to-upstream</tt> means\r
         "publish my <a href="#ref_master">master</a> <a href="#ref_branch">branch</a>\r
-        <a href="#ref_head">head</a> as to-upstream <a href="#ref_master">master</a> <a href="#ref_head">head</a>\r
-        at $URL". See also <a href="git-push.html">git-push(1)</a>\r
+        <a href="#ref_head">head</a> as to-upstream <a href="#ref_branch">branch</a> at $URL". See\r
+        also <a href="git-push.html">git-push(1)</a>\r
 </p>\r
 </dd>\r
 <dt>\r
@@ -984,7 +984,7 @@ the git-list &lt;git@vger.kernel.org&gt;.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 08-Jan-2007 06:53:26 UTC\r
+Last updated 13-Jan-2007 08:09:09 UTC\r
 </div>\r
 </div>\r
 </body>\r
index cd61aa26065ba6f3d06df7d1c00e2e81d42bce9e..bc917bbac3b21eff1baa70b24c689ff11f5a4323 100644 (file)
@@ -259,7 +259,7 @@ refspec::
        means "grab the master branch head from the $URL and store
        it as my origin branch head".
        And `git push $URL refs/heads/master:refs/heads/to-upstream`
-       means "publish my master branch head as to-upstream master head
+       means "publish my master branch head as to-upstream branch
        at $URL".   See also gitlink:git-push[1]
 
 repository::
index d4faf7f51dc9e1abad95ecca5595482de7171156..e1cc5d64eb0e45e5e46aa00a73a05328c03d1dd2 100644 (file)
@@ -265,7 +265,7 @@ div.exampleblock-content {
 <div class="sectionbody">\r
 <p>Hooks are little scripts you can place in <tt>$GIT_DIR/hooks</tt>\r
 directory to trigger action at certain points.  When\r
-<tt>git-init-db</tt> is run, a handful example hooks are copied in the\r
+<tt>git-init</tt> is run, a handful example hooks are copied in the\r
 <tt>hooks</tt> directory of the new repository, but by default they are\r
 all disabled.  To enable a hook, make it executable with <tt>chmod +x</tt>.</p>\r
 <p>This document describes the currently defined hooks.</p>\r
@@ -406,7 +406,7 @@ you can redirect your output to your <tt>stderr</tt>.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 01-Jan-2007 03:20:17 UTC\r
+Last updated 13-Jan-2007 08:09:09 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 161123f142ff231bc8153242d7f6507c54b09e2b..e3b76f96eb303dc7eda20472c8c546cf51a54e67 100644 (file)
--- a/hooks.txt
+++ b/hooks.txt
@@ -3,7 +3,7 @@ Hooks used by git
 
 Hooks are little scripts you can place in `$GIT_DIR/hooks`
 directory to trigger action at certain points.  When
-`git-init-db` is run, a handful example hooks are copied in the
+`git-init` is run, a handful example hooks are copied in the
 `hooks` directory of the new repository, but by default they are
 all disabled.  To enable a hook, make it executable with `chmod +x`.
 
index 5b4f07252ea08e9aa1bf90b9340343e9a9d0ee04..31eb7253435df41d20045084779115e0ca807524 100644 (file)
@@ -365,7 +365,7 @@ as a Linux subsystem maintainer.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 03-Oct-2006 08:41:46 UTC\r
+Last updated 13-Jan-2007 08:09:08 UTC\r
 </div>\r
 </div>\r
 </body>\r
index ba191569af9501117322e1881160226a74867007..a202f3a460b4446f085977f7423d1f43e189e5ef 100644 (file)
@@ -70,7 +70,7 @@ DocumentRoot /where/ever/httpd.conf" to find your root:
 Initialize a bare repository
 
     $ cd my-new-repo.git
-    $ git --bare init-db
+    $ git --bare init
 
 
 Change the ownership to your web-server's credentials. Use "grep ^User
index 6dda03f7d41b3aff7d6486f05afcaa9ee293c572..106c4dc181d6231a1e65e43d99456f4b34dc78a8 100644 (file)
@@ -437,7 +437,7 @@ hooks
 <p>\r
         Hooks are customization scripts used by various git\r
         commands.  A handful of sample hooks are installed when\r
-        <tt>git init-db</tt> is run, but all of them are disabled by\r
+        <tt>git init</tt> is run, but all of them are disabled by\r
         default.  To enable, they need to be made executable.\r
         Read <a href="hooks.html">hooks</a> for more details about\r
         each hook.\r
@@ -543,7 +543,7 @@ logs/refs/tags/<tt>name</tt>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 20-Nov-2006 03:17:36 UTC\r
+Last updated 13-Jan-2007 08:09:08 UTC\r
 </div>\r
 </div>\r
 </body>\r
index e20fb7e74c22390e810a392f2625a3ba6b325477..0fdd36614d8db6f52d1bdc6f8bf2e5a667edeff0 100644 (file)
@@ -102,7 +102,7 @@ branches::
 hooks::
        Hooks are customization scripts used by various git
        commands.  A handful of sample hooks are installed when
-       `git init-db` is run, but all of them are disabled by
+       `git init` is run, but all of them are disabled by
        default.  To enable, they need to be made executable.
        Read link:hooks.html[hooks] for more details about
        each hook.