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 b4aae0d..f7dba89 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 8927cbb..dd84bf0 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 5ea6117..0cd33fb 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 e882687..2492649 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 8e09bea..775bf42 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 849254d..7575c77 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 a7adf24..cb081cd 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 b400c4a..badaeb5 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 e1fd688..596b567 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 99ab519..1b218a8 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 ee9e8fa..6edb9f1 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 82685e5..dc3ebd0 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 2348826..a79193f 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 78ca730..97ff00c 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 49e63b6..954cf47 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 1b01313..9ed7211 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 bbc3ec0..da533ba 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 5662cdc..f89d745 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 e3f8f21..06658c0 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 cd61aa2..bc917bb 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 d4faf7f..e1cc5d6 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 161123f..e3b76f9 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 5b4f072..31eb725 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 ba19156..a202f3a 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 6dda03f..106c4dc 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 e20fb7e..0fdd366 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.