From: J. Bruce Fields Date: Thu, 11 Jan 2007 17:44:08 +0000 (-0500) Subject: user-manual: replace init-db by init X-Git-Tag: v1.5.0-rc3~3^2~24 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/f1d2b47794bc0425f817b9015ad738f2cfb7f3f3?ds=inline;hp=-c user-manual: replace init-db by init Replace mentions of init-db by mentions of init. Signed-off-by: J. Bruce Fields --- f1d2b47794bc0425f817b9015ad738f2cfb7f3f3 diff --git a/Documentation/user-manual.txt b/Documentation/user-manual.txt index ae21ef239e..94c09e529e 100644 --- a/Documentation/user-manual.txt +++ b/Documentation/user-manual.txt @@ -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 -------------------------------------------------