Skip to content

Commit 0278307

Browse files
wheegitster
authored andcommitted
Documentation: Correct various misspellings and typos.
Fix minor typos throughout the documentation. Signed-off-by: Brian Hetro <whee@smaertness.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent db21872 commit 0278307

19 files changed

+40
-40
lines changed

Documentation/config.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ core.excludesfile::
283283

284284
core.editor::
285285
Commands such as `commit` and `tag` that lets you edit
286-
messages by lauching an editor uses the value of this
286+
messages by launching an editor uses the value of this
287287
variable when it is set, and the environment variable
288288
`GIT_EDITOR` is not set. The order of preference is
289289
`GIT_EDITOR` environment, `core.editor`, `VISUAL` and
@@ -500,10 +500,10 @@ gitcvs.dbuser, gitcvs.dbpass::
500500
'gitcvs.dbuser' supports variable substitution (see
501501
gitlink:git-cvsserver[1] for details).
502502

503-
All gitcvs variables except for 'gitcvs.allbinary' can also specifed
504-
as 'gitcvs.<access_method>.<varname>' (where 'access_method' is one
505-
of "ext" and "pserver") to make them apply only for the given access
506-
method.
503+
All gitcvs variables except for 'gitcvs.allbinary' can also be
504+
specified as 'gitcvs.<access_method>.<varname>' (where 'access_method'
505+
is one of "ext" and "pserver") to make them apply only for the given
506+
access method.
507507

508508
http.sslVerify::
509509
Whether to verify the SSL certificate when fetching or pushing
@@ -615,7 +615,7 @@ pack.compression::
615615
not set, defaults to -1.
616616

617617
pack.deltaCacheSize::
618-
The maxium memory in bytes used for caching deltas in
618+
The maximum memory in bytes used for caching deltas in
619619
gitlink:git-pack-objects[1].
620620
A value of 0 means no limit. Defaults to 0.
621621

Documentation/git-commit-tree.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ A commit encapsulates:
5252
- committer name and email and the commit time.
5353

5454
While parent object ids are provided on the command line, author and
55-
commiter information is taken from the following environment variables,
55+
committer information is taken from the following environment variables,
5656
if set:
5757

5858
GIT_AUTHOR_NAME

Documentation/git-config.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ See also <<FILES>>.
139139
FILES
140140
-----
141141

142-
If not set explicitely with '--file', there are three files where
142+
If not set explicitly with '--file', there are three files where
143143
git-config will search for configuration options:
144144

145145
.git/config::

Documentation/git-fast-import.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ been well tested in the wild.
241241
+
242242
Frontends should prefer the `raw` format if the source material
243243
already uses UNIX-epoch format, can be coaxed to give dates in that
244-
format, or its format is easiliy convertible to it, as there is no
244+
format, or its format is easily convertible to it, as there is no
245245
ambiguity in parsing.
246246

247247
`now`::
@@ -343,7 +343,7 @@ Zero or more `filemodify`, `filedelete`, `filecopy`, `filerename`
343343
and `filedeleteall` commands
344344
may be included to update the contents of the branch prior to
345345
creating the commit. These commands may be supplied in any order.
346-
However it is recommended that a `filedeleteall` command preceed
346+
However it is recommended that a `filedeleteall` command precede
347347
all `filemodify`, `filecopy` and `filerename` commands in the same
348348
commit, as `filedeleteall`
349349
wipes the branch clean (see below).
@@ -402,7 +402,7 @@ Here `<committish>` is any of the following:
402402
+
403403
The reason fast-import uses `:` to denote a mark reference is this character
404404
is not legal in a Git branch name. The leading `:` makes it easy
405-
to distingush between the mark 42 (`:42`) and the branch 42 (`42`
405+
to distinguish between the mark 42 (`:42`) and the branch 42 (`42`
406406
or `refs/heads/42`), or an abbreviated SHA-1 which happened to
407407
consist only of base-10 digits.
408408
+
@@ -487,7 +487,7 @@ start with double quote (`"`).
487487
If an `LF` or double quote must be encoded into `<path>` shell-style
488488
quoting should be used, e.g. `"path/with\n and \" in it"`.
489489

490-
The value of `<path>` must be in canoncial form. That is it must not:
490+
The value of `<path>` must be in canonical form. That is it must not:
491491

492492
* contain an empty directory component (e.g. `foo//bar` is invalid),
493493
* end with a directory separator (e.g. `foo/` is invalid),
@@ -733,7 +733,7 @@ of the next line, even if `<raw>` did not end with an `LF`.
733733
Delimited format::
734734
A delimiter string is used to mark the end of the data.
735735
fast-import will compute the length by searching for the delimiter.
736-
This format is primarly useful for testing and is not
736+
This format is primarily useful for testing and is not
737737
recommended for real data.
738738
+
739739
....
@@ -873,7 +873,7 @@ to remove the dummy branch.
873873
Import Now, Repack Later
874874
~~~~~~~~~~~~~~~~~~~~~~~~
875875
As soon as fast-import completes the Git repository is completely valid
876-
and ready for use. Typicallly this takes only a very short time,
876+
and ready for use. Typically this takes only a very short time,
877877
even for considerably large projects (100,000+ commits).
878878

879879
However repacking the repository is necessary to improve data
@@ -942,8 +942,8 @@ Memory Utilization
942942
------------------
943943
There are a number of factors which affect how much memory fast-import
944944
requires to perform an import. Like critical sections of core
945-
Git, fast-import uses its own memory allocators to ammortize any overheads
946-
associated with malloc. In practice fast-import tends to ammoritize any
945+
Git, fast-import uses its own memory allocators to amortize any overheads
946+
associated with malloc. In practice fast-import tends to amortize any
947947
malloc overheads to 0, due to its use of large block allocations.
948948

949949
per object
@@ -1000,7 +1000,7 @@ per active tree
10001000
~~~~~~~~~~~~~~~
10011001
Trees (aka directories) use just 12 bytes of memory on top of the
10021002
memory required for their entries (see ``per active file'' below).
1003-
The cost of a tree is virtually 0, as its overhead ammortizes out
1003+
The cost of a tree is virtually 0, as its overhead amortizes out
10041004
over the individual file entries.
10051005

10061006
per active file entry

Documentation/git-fmt-merge-msg.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ SYNOPSIS
1010
--------
1111
[verse]
1212
git-fmt-merge-msg [--summary | --no-summary] <$GIT_DIR/FETCH_HEAD
13-
git-fmt-merge-msg [--summary | --no-summray] -F <file>
13+
git-fmt-merge-msg [--summary | --no-summary] -F <file>
1414

1515
DESCRIPTION
1616
-----------

Documentation/git-format-patch.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ include::diff-options.txt[]
118118

119119
--suffix=.<sfx>::
120120
Instead of using `.patch` as the suffix for generated
121-
filenames, use specifed suffix. A common alternative is
121+
filenames, use specified suffix. A common alternative is
122122
`--suffix=.txt`.
123123
+
124124
Note that you would need to include the leading dot `.` if you

Documentation/git-gui.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ See Also
8989
Other
9090
-----
9191
git-gui is actually maintained as an independent project, but stable
92-
versions are distributed as part of the Git suite for the convience
92+
versions are distributed as part of the Git suite for the convenience
9393
of end users.
9494

9595
A git-gui development repository can be obtained from:

Documentation/git-http-fetch.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ commit-id::
3434
the local end after the transfer is complete.
3535

3636
--stdin::
37-
Instead of a commit id on the commandline (which is not expected in this
37+
Instead of a commit id on the command line (which is not expected in this
3838
case), 'git-http-fetch' expects lines on stdin in the format
3939

4040
<commit-id>['\t'<filename-as-in--w>]

Documentation/git-local-fetch.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ OPTIONS
4444
the local end after the transfer is complete.
4545

4646
--stdin::
47-
Instead of a commit id on the commandline (which is not expected in this
47+
Instead of a commit id on the command line (which is not expected in this
4848
case), 'git-local-fetch' expects lines on stdin in the format
4949

5050
<commit-id>['\t'<filename-as-in--w>]

Documentation/git-name-rev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ OPTIONS
3737
--name-only::
3838
Instead of printing both the SHA-1 and the name, print only
3939
the name. If given with --tags the usual tag prefix of
40-
"tags/" is also ommitted from the name, matching the output
40+
"tags/" is also omitted from the name, matching the output
4141
of gitlink::git-describe[1] more closely. This option
4242
cannot be combined with --stdin.
4343

0 commit comments

Comments
 (0)