summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Documentation/user-manual.txt4
1 files changed, 2 insertions, 2 deletions
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
-------------------------------------------------