user-manual: replace init-db by init

Replace mentions of init-db by mentions of init.

Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
This commit is contained in:
J. Bruce Fields 2007-01-11 12:44:08 -05:00
Родитель 01997b4a25
Коммит f1d2b47794
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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
-------------------------------------------------