diff options
author | David Aguilar <davvid@gmail.com> | 2009-03-22 02:15:13 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-03-22 10:33:36 -0700 |
commit | 3e5970a41ec0809efb792357af546ffa96568f66 (patch) | |
tree | 005a504ece6de3693f6f92839c75109d7efd2f65 /Documentation/everyday.txt | |
parent | 688ba09cad80b0821886ad78fec039092306cead (diff) | |
download | git-3e5970a41ec0809efb792357af546ffa96568f66.tar.gz |
everyday: use the dashless form of git-init
The 'Everyday GIT' guide was using the old dashed form
of git-init.
Signed-off-by: David Aguilar <davvid@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/everyday.txt')
-rw-r--r-- | Documentation/everyday.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/everyday.txt b/Documentation/everyday.txt index e598cdda45..9310b650d3 100644 --- a/Documentation/everyday.txt +++ b/Documentation/everyday.txt @@ -98,7 +98,7 @@ Use a tarball as a starting point for a new repository.:: ------------ $ tar zxf frotz.tar.gz $ cd frotz -$ git-init +$ git init $ git add . <1> $ git commit -m "import of frotz source tree." $ git tag v2.43 <2> |