diff options
author | J. Bruce Fields <bfields@citi.umich.edu> | 2007-01-11 12:44:08 -0500 |
---|---|---|
committer | J. Bruce Fields <bfields@citi.umich.edu> | 2007-01-11 12:44:08 -0500 |
commit | f1d2b47794bc0425f817b9015ad738f2cfb7f3f3 (patch) | |
tree | 4535a2f5a0bb410a4012edbaaf63e5f990ba98fd /Documentation/user-manual.txt | |
parent | 01997b4a256ed7ef96ede527a92eeeecc243a927 (diff) | |
download | git-f1d2b47794bc0425f817b9015ad738f2cfb7f3f3.tar.gz |
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>
Diffstat (limited to 'Documentation/user-manual.txt')
-rw-r--r-- | Documentation/user-manual.txt | 4 |
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 ------------------------------------------------- |