diff options
author | Nicolas Pitre <nico@cam.org> | 2007-01-07 12:31:29 -0500 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-07 18:03:07 -0800 |
commit | 515377ea9ec6192f82a2fa5c5b5b7651d9d6cf6c (patch) | |
tree | 5a5643daddda26814cb3769ec63d344143b7ecf0 /Documentation | |
parent | cf2999eb4cbe39d5a40add574be9e5c019df758b (diff) | |
download | git-515377ea9ec6192f82a2fa5c5b5b7651d9d6cf6c.tar.gz git-515377ea9ec6192f82a2fa5c5b5b7651d9d6cf6c.tar.xz |
"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')
-rw-r--r-- | Documentation/everyday.txt | 4 | ||||
-rw-r--r-- | Documentation/git-init-db.txt | 1 | ||||
-rw-r--r-- | Documentation/git.txt | 1 | ||||
-rw-r--r-- | Documentation/tutorial-2.txt | 2 | ||||
-rw-r--r-- | Documentation/tutorial.txt | 2 |
5 files changed, 6 insertions, 4 deletions
diff --git a/Documentation/everyday.txt b/Documentation/everyday.txt index 2105a3d2e..4e83994c5 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> diff --git a/Documentation/git-init-db.txt b/Documentation/git-init-db.txt index ca7d09dc0..bc3ba1493 100644 --- a/Documentation/git-init-db.txt +++ b/Documentation/git-init-db.txt @@ -74,6 +74,7 @@ Running `git-init-db` in an existing repository is safe. It will not overwrite things that are already there. The primary reason for rerunning `git-init-db` is to pick up newly added templates. +Note that `git-init` is the same as `git-init-db`. EXAMPLES diff --git a/Documentation/git.txt b/Documentation/git.txt index 36b2126d8..5662cdc27 100644 --- a/Documentation/git.txt +++ b/Documentation/git.txt @@ -353,6 +353,7 @@ gitlink:git-hash-object[1]:: gitlink:git-index-pack[1]:: Build pack idx file for an existing packed archive. +gitlink:git-init[1]:: gitlink:git-init-db[1]:: Creates an empty git object database, or reinitialize an existing one. diff --git a/Documentation/tutorial-2.txt b/Documentation/tutorial-2.txt index 60e54777d..f48894c9a 100644 --- a/Documentation/tutorial-2.txt +++ b/Documentation/tutorial-2.txt @@ -17,7 +17,7 @@ Let's start a new project and create a small amount of history: ------------------------------------------------ $ mkdir test-project $ cd test-project -$ git init-db +$ git init Initialized empty Git repository in .git/ $ echo 'hello world' > file.txt $ git add . diff --git a/Documentation/tutorial.txt b/Documentation/tutorial.txt index 01d4a47a9..d2bf0b905 100644 --- a/Documentation/tutorial.txt +++ b/Documentation/tutorial.txt @@ -32,7 +32,7 @@ can place it under git revision control as follows. ------------------------------------------------ $ tar xzf project.tar.gz $ cd project -$ git init-db +$ git init ------------------------------------------------ Git will reply |