aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJ. Bruce Fields <bfields@citi.umich.edu>2007-01-11 12:44:08 -0500
committerJ. Bruce Fields <bfields@citi.umich.edu>2007-01-11 12:44:08 -0500
commitf1d2b47794bc0425f817b9015ad738f2cfb7f3f3 (patch)
tree4535a2f5a0bb410a4012edbaaf63e5f990ba98fd
parent01997b4a256ed7ef96ede527a92eeeecc243a927 (diff)
downloadgit-f1d2b47794bc0425f817b9015ad738f2cfb7f3f3.tar.gz
git-f1d2b47794bc0425f817b9015ad738f2cfb7f3f3.tar.xz
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>
-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 ae21ef239..94c09e529 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
-------------------------------------------------