@@ -33,10 +33,10 @@ If the object storage directory is specified via the
3333are created underneath; otherwise, the default `$GIT_DIR/objects`
3434directory is used.
3535
36- Running ' git init' in an existing repository is safe. It will not
36+ Running ` git init` in an existing repository is safe. It will not
3737overwrite things that are already there. The primary reason for
38- rerunning ' git init' is to pick up newly added templates (or to move
39- the repository to another place if --separate-git-dir is given).
38+ rerunning ` git init` is to pick up newly added templates (or to move
39+ the repository to another place if ` --separate-git-dir` is given).
4040
4141OPTIONS
4242-------
@@ -53,8 +53,8 @@ current working directory.
5353
5454--object-format=<format>::
5555
56- Specify the given object format (hash algorithm) for the repository. The valid
57- values are ' sha1' and (if enabled) ' sha256' . ' sha1' is the default.
56+ Specify the given object _< format>_ (hash algorithm) for the repository. The valid
57+ values are ` sha1` and (if enabled) ` sha256` . ` sha1` is the default.
5858+
5959include::object-format-disclaimer.txt[]
6060
@@ -90,12 +90,12 @@ customized via the `init.defaultBranch` configuration variable).
9090
9191Specify that the Git repository is to be shared amongst several users. This
9292allows users belonging to the same group to push into that
93- repository. When specified, the config variable " core.sharedRepository" is
93+ repository. When specified, the config variable ` core.sharedRepository` is
9494set so that files and directories under `$GIT_DIR` are created with the
9595requested permissions. When not specified, Git will use permissions reported
96- by umask(2).
96+ by ` umask(2)` .
9797+
98- The option can have the following values, defaulting to ' group' if no value
98+ The option can have the following values, defaulting to ` group` if no value
9999is given:
100100+
101101--
@@ -109,21 +109,21 @@ specified.
109109Make the repository group-writable, (and g+sx, since the git group may not be
110110the primary group of all users). This is used to loosen the permissions of an
111111otherwise safe umask(2) value. Note that the umask still applies to the other
112- permission bits (e.g. if umask is ' 0022' , using ' group' will not remove read
113- privileges from other (non-group) users). See ' 0xxx' for how to exactly specify
112+ permission bits (e.g. if umask is ` 0022` , using ` group` will not remove read
113+ privileges from other (non-group) users). See ` 0xxx` for how to exactly specify
114114the repository permissions.
115115
116116'all' (or 'world' or 'everybody')::
117117
118- Same as ' group' , but make the repository readable by all users.
118+ Same as ` group` , but make the repository readable by all users.
119119
120120'<perm>'::
121121
122122'<perm>' is a 3-digit octal number prefixed with `0` and each file
123- will have mode '<perm>'. '<perm>' will override users' umask(2)
124- value (and not only loosen permissions as ' group' and ' all'
125- do). ' 0640' will create a repository which is group-readable, but
126- not group-writable or accessible to others. ' 0660' will create a repo
123+ will have mode '<perm>'. '<perm>' will override users'` umask(2)`
124+ value (and not only loosen permissions as ` group` and ` all`
125+ do). ` 0640` will create a repository which is group-readable, but
126+ not group-writable or accessible to others. ` 0660` will create a repo
127127that is readable and writable to the current user and group, but
128128inaccessible to others (directories and executable files get their
129129`x` bit from the `r` bit for corresponding classes of users).
@@ -172,7 +172,7 @@ $ git add . <2>
172172$ git commit <3>
173173----------------
174174+
175- <1> Create a /path/to/my/codebase/.git directory.
175+ <1> Create a ` /path/to/my/codebase/.git` directory.
176176<2> Add all existing files to the index.
177177<3> Record the pristine state as the first commit in the history.
178178
0 commit comments