summaryrefslogtreecommitdiff
path: root/Documentation/everyday.txt
diff options
context:
space:
mode:
authorNicolas Pitre <nico@cam.org>2007-01-07 17:31:29 (GMT)
committerJunio C Hamano <junkio@cox.net>2007-01-08 02:03:07 (GMT)
commit515377ea9ec6192f82a2fa5c5b5b7651d9d6cf6c (patch)
tree5a5643daddda26814cb3769ec63d344143b7ecf0 /Documentation/everyday.txt
parentcf2999eb4cbe39d5a40add574be9e5c019df758b (diff)
downloadgit-515377ea9ec6192f82a2fa5c5b5b7651d9d6cf6c.zip
git-515377ea9ec6192f82a2fa5c5b5b7651d9d6cf6c.tar.gz
git-515377ea9ec6192f82a2fa5c5b5b7651d9d6cf6c.tar.bz2
"init-db" can really be just "init"
Make "init" the equivalent of "init-db". This should make first GIT impression a little more friendly. Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/everyday.txt')
-rw-r--r--Documentation/everyday.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/everyday.txt b/Documentation/everyday.txt
index 2105a3d..4e83994 100644
--- a/Documentation/everyday.txt
+++ b/Documentation/everyday.txt
@@ -25,7 +25,7 @@ Basic Repository[[Basic Repository]]
Everybody uses these commands to maintain git repositories.
- * gitlink:git-init-db[1] or gitlink:git-clone[1] to create a
+ * gitlink:git-init[1] or gitlink:git-clone[1] to create a
new repository.
* gitlink:git-fsck-objects[1] to check the repository for errors.
@@ -107,7 +107,7 @@ Use a tarball as a starting point for a new repository.::
------------
$ tar zxf frotz.tar.gz
$ cd frotz
-$ git-init-db
+$ git-init
$ git add . <1>
$ git commit -m 'import of frotz source tree.'
$ git tag v2.43 <2>