]> git.ipfire.org Git - thirdparty/git.git/commitdiff
user-manual: replace init-db by init
authorJ. Bruce Fields <bfields@citi.umich.edu>
Thu, 11 Jan 2007 17:44:08 +0000 (12:44 -0500)
committerJ. Bruce Fields <bfields@citi.umich.edu>
Thu, 11 Jan 2007 17:44:08 +0000 (12:44 -0500)
Replace mentions of init-db by mentions of init.

Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Documentation/user-manual.txt

index ae21ef239e7300f1006f4d1098d7b31ddfc4764b..94c09e529ef5ea80325edebca73107501fd62011 100644 (file)
@@ -833,7 +833,7 @@ Creating a new repository from scratch is very easy:
 -------------------------------------------------
 $ mkdir project
 $ cd project
-$ git init-db
+$ git init
 -------------------------------------------------
 
 If you have some initial content (say, a tarball):
@@ -841,7 +841,7 @@ If you have some initial content (say, a tarball):
 -------------------------------------------------
 $ tar -xzvf project.tar.gz
 $ cd project
-$ git init-db
+$ git init
 $ git add . # include everything below ./ in the first commit:
 $ git commit
 -------------------------------------------------