Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Documentation: git-init: typographical fixes
author
Linus Arver
<linusarver@gmail.com>
Fri, 8 Aug 2014 17:29:14 +0000
(10:29 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Fri, 8 Aug 2014 20:17:40 +0000
(13:17 -0700)
Use backticks when we quote something that the user should literally
use.
Signed-off-by: Linus Arver <linusarver@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-init.txt
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
7b69fcb
)
diff --git
a/Documentation/git-init.txt
b/Documentation/git-init.txt
index afd721e3a94e377372431254d6c0f3e79a61c099..f1f920e0b4f751fb454fad9806951dc890e4beb9 100644
(file)
--- a/
Documentation/git-init.txt
+++ b/
Documentation/git-init.txt
@@
-43,7
+43,7
@@
OPTIONS
-q::
--quiet::
-q::
--quiet::
-Only print error and warning messages
,
all other output will be suppressed.
+Only print error and warning messages
;
all other output will be suppressed.
--bare::
--bare::
@@
-97,7
+97,7
@@
is given:
create a repo that is readable and writable to the current user and group,
but inaccessible to others.
create a repo that is readable and writable to the current user and group,
but inaccessible to others.
-By default, the configuration flag
receive.denyNonFastForwards
is enabled
+By default, the configuration flag
`receive.denyNonFastForwards`
is enabled
in shared repositories, so that you cannot force a non fast-forwarding push
into it.
in shared repositories, so that you cannot force a non fast-forwarding push
into it.
@@
-106,14
+106,13
@@
line, the command is run inside the directory (possibly after creating it).
--
--
-
TEMPLATE DIRECTORY
------------------
The template directory contains files and directories that will be copied to
the `$GIT_DIR` after it is created.
TEMPLATE DIRECTORY
------------------
The template directory contains files and directories that will be copied to
the `$GIT_DIR` after it is created.
-The template directory used will (in order):
+The template directory used will
be
(in order):
- The argument given with the `--template` option.
- The argument given with the `--template` option.
@@
-138,8
+137,8
@@
$ git init <1>
$ git add . <2>
----------------
+
$ git add . <2>
----------------
+
-<1>
prepare /path/to/my/codebase/.git directory
-<2>
add all existing file to the index
+<1>
Create a /path/to/my/codebase/.git directory.
+<2>
Add all existing files to the index.
GIT
---
GIT
---