1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-26 14:06:14 +02:00

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
parent 01997b4a25
commit f1d2b47794

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