From 24351a850088ad4095ad5582fb14e9a8ee689377 Mon Sep 17 00:00:00 2001
From: Junio C Hamano
Date: Sat, 13 Jan 2007 08:09:17 +0000
Subject: [PATCH] Autogenerated HTML docs for v1.5.0-rc1-gb60d
---
config.txt | 2 +-
core-tutorial.html | 12 ++++++------
core-tutorial.txt | 10 +++++-----
cvs-migration.html | 4 ++--
cvs-migration.txt | 2 +-
git-commit.html | 10 +++-------
git-commit.txt | 8 ++------
git-init.html | 6 ++----
git-init.txt | 4 +---
git-p4import.html | 4 ++--
git-p4import.txt | 2 +-
git-prune-packed.html | 12 ++++++++++--
git-prune-packed.txt | 5 ++++-
git-repo-config.html | 4 ++--
git-svn.html | 8 ++++----
git-svn.txt | 6 +++---
git.html | 7 ++-----
git.txt | 3 +--
glossary.html | 6 +++---
glossary.txt | 2 +-
hooks.html | 4 ++--
hooks.txt | 2 +-
howto-index.html | 2 +-
howto/setup-git-server-over-http.txt | 2 +-
repository-layout.html | 4 ++--
repository-layout.txt | 2 +-
26 files changed, 64 insertions(+), 69 deletions(-)
diff --git a/config.txt b/config.txt
index b4aae0d0a..f7dba8977 100644
--- a/config.txt
+++ b/config.txt
@@ -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
diff --git a/core-tutorial.html b/core-tutorial.html
index 8927cbb74..dd84bf099 100644
--- a/core-tutorial.html
+++ b/core-tutorial.html
@@ -309,12 +309,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
@@ -1613,11 +1613,11 @@ an empty directory:
$ 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
changes to be pulled by via the transport of your choice. Also
@@ -1761,7 +1761,7 @@ Prepare a public repository accessible to others.
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
@@ -2004,7 +2004,7 @@ to follow, not easier.