Replace mentions of init-db by mentions of init.
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
-------------------------------------------------
$ mkdir project
$ cd project
-$ git init-db
+$ git init
-------------------------------------------------
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
-------------------------------------------------