Skip to content

Commit abda1ef

Browse files
vonbrandJunio C Hamano
authored andcommitted
Documentation: Spelling fixes
Signed-off-by: Horst H. von Brand <vonbrand@inf.utfsm.cl> Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 895f10c commit abda1ef

28 files changed

+47
-47
lines changed

Documentation/config.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ CONFIGURATION FILE
22
------------------
33

44
The git configuration file contains a number of variables that affect
5-
the git commands behaviour. They can be used by both the git plumbing
5+
the git commands behavior. They can be used by both the git plumbing
66
and the porcelains. The variables are divided to sections, where
77
in the fully qualified variable name the variable itself is the last
88
dot-separated segment and the section name is everything before the last
@@ -53,7 +53,7 @@ core.gitProxy::
5353
may be set multiple times and is matched in the given order;
5454
the first match wins.
5555

56-
Can be overriden by the 'GIT_PROXY_COMMAND' environment variable
56+
Can be overridden by the 'GIT_PROXY_COMMAND' environment variable
5757
(which always applies universally, without the special "for"
5858
handling).
5959

@@ -115,12 +115,12 @@ http.sslCert::
115115

116116
http.sslKey::
117117
File containing the SSL private key when fetching or pushing
118-
over HTTPS. Can be overriden by the 'GIT_SSL_KEY' environment
118+
over HTTPS. Can be overridden by the 'GIT_SSL_KEY' environment
119119
variable.
120120

121121
http.sslCAInfo::
122122
File containing the certificates to verify the peer with when
123-
fetching or pushing over HTTPS. Can be overriden by the
123+
fetching or pushing over HTTPS. Can be overridden by the
124124
'GIT_SSL_CAINFO' environment variable.
125125

126126
http.sslCAPath::
@@ -129,13 +129,13 @@ http.sslCAPath::
129129
by the 'GIT_SSL_CAPATH' environment variable.
130130

131131
http.maxRequests::
132-
How many HTTP requests to launch in parallel. Can be overriden
132+
How many HTTP requests to launch in parallel. Can be overridden
133133
by the 'GIT_HTTP_MAX_REQUESTS' environment variable. Default is 5.
134134

135135
http.lowSpeedLimit, http.lowSpeedTime::
136136
If the HTTP transfer speed is less than 'http.lowSpeedLimit'
137137
for longer than 'http.lowSpeedTime' seconds, the transfer is aborted.
138-
Can be overriden by the 'GIT_HTTP_LOW_SPEED_LIMIT' and
138+
Can be overridden by the 'GIT_HTTP_LOW_SPEED_LIMIT' and
139139
'GIT_HTTP_LOW_SPEED_TIME' environment variables.
140140

141141
i18n.commitEncoding::
@@ -166,12 +166,12 @@ showbranch.default::
166166

167167
user.email::
168168
Your email address to be recorded in any newly created commits.
169-
Can be overriden by the 'GIT_AUTHOR_EMAIL' and 'GIT_COMMITTER_EMAIL'
169+
Can be overridden by the 'GIT_AUTHOR_EMAIL' and 'GIT_COMMITTER_EMAIL'
170170
environment variables. See gitlink:git-commit-tree[1].
171171

172172
user.name::
173173
Your full name to be recorded in any newly created commits.
174-
Can be overriden by the 'GIT_AUTHOR_NAME' and 'GIT_COMMITTER_NAME'
174+
Can be overridden by the 'GIT_AUTHOR_NAME' and 'GIT_COMMITTER_NAME'
175175
environment variables. See gitlink:git-commit-tree[1].
176176

177177
whatchanged.difftree::

Documentation/core-tutorial.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ $ git-cat-file -t 557db03de997c86a4a028e1ebd3a1ceb225be238
184184
----------------
185185

186186
where the `-t` tells `git-cat-file` to tell you what the "type" of the
187-
object is. git will tell you that you have a "blob" object (ie just a
187+
object is. git will tell you that you have a "blob" object (i.e., just a
188188
regular file), and you can see the contents with
189189

190190
----------------
@@ -619,7 +619,7 @@ $ git tag -s <tagname>
619619
----------------
620620

621621
which will sign the current `HEAD` (but you can also give it another
622-
argument that specifies the thing to tag, ie you could have tagged the
622+
argument that specifies the thing to tag, i.e., you could have tagged the
623623
current `mybranch` point by using `git tag <tagname> mybranch`).
624624

625625
You normally only do signed tags for major releases or things
@@ -1097,7 +1097,7 @@ commit object by downloading from `repo.git/objects/xx/xxx\...`
10971097
using the object name of that commit object. Then it reads the
10981098
commit object to find out its parent commits and the associate
10991099
tree object; it repeats this process until it gets all the
1100-
necessary objects. Because of this behaviour, they are
1100+
necessary objects. Because of this behavior, they are
11011101
sometimes also called 'commit walkers'.
11021102
+
11031103
The 'commit walkers' are sometimes also called 'dumb

Documentation/cvs-migration.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
git for CVS users
22
=================
33

4-
So you're a CVS user. That's ok, it's a treatable condition. The job of
4+
So you're a CVS user. That's OK, it's a treatable condition. The job of
55
this document is to put you on the road to recovery, by helping you
66
convert an existing cvs repository to git, and by showing you how to use a
77
git repository in a cvs-like fashion.
@@ -159,7 +159,7 @@ other than `master`.
159159

160160
[NOTE]
161161
============
162-
Because of this behaviour, if the shared repository and the developer's
162+
Because of this behavior, if the shared repository and the developer's
163163
repository both have branches named `origin`, then a push like the above
164164
attempts to update the `origin` branch in the shared repository from the
165165
developer's `origin` branch. The results may be unexpected, so it's

Documentation/git-apply.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ OPTIONS
113113
When `git-apply` is used for statistics and not applying a
114114
patch, it defaults to `nowarn`.
115115
You can use different `<option>` to control this
116-
behaviour:
116+
behavior:
117117
+
118118
* `nowarn` turns off the trailing whitespace warning.
119119
* `warn` outputs warnings for a few such errors, but applies the

Documentation/git-blame.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ which introduced the line. Start annotation from the given revision.
1616

1717
OPTIONS
1818
-------
19-
-c, --compability::
19+
-c, --compatibility::
2020
Use the same output mode as git-annotate (Default: off).
2121

2222
-l, --long::

Documentation/git-commit.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ but can be used to amend a merge commit.
9898
Instead of committing only the files specified on the
9999
command line, update them in the index file and then
100100
commit the whole index. This is the traditional
101-
behaviour.
101+
behavior.
102102

103103
-o|--only::
104104
Commit only the files specified on the command line.

Documentation/git-cvsserver.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ To get a checkout with the Eclipse CVS client:
9494
4. Pick 'HEAD' when it asks what branch/tag to check out. Untick the
9595
"launch commit wizard" to avoid committing the .project file.
9696

97-
Protocol notes: If you are using anonymous acces via pserver, just select that.
97+
Protocol notes: If you are using anonymous access via pserver, just select that.
9898
Those using SSH access should choose the 'ext' protocol, and configure 'ext'
9999
access on the Preferences->Team->CVS->ExtConnection pane. Set CVS_SERVER to
100100
'git-cvsserver'. Not that password support is not good when using 'ext',

Documentation/git-daemon.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ aka 9418. It waits for a connection, and will just execute "git-upload-pack"
2020
when it gets one.
2121

2222
It's careful in that there's a magic request-line that gives the command and
23-
what directory to upload, and it verifies that the directory is ok.
23+
what directory to upload, and it verifies that the directory is OK.
2424

2525
It verifies that the directory has the magic file "git-daemon-export-ok", and
2626
it will refuse to export any git directory that hasn't explicitly been marked
2727
for export this way (unless the '--export-all' parameter is specified). If you
2828
pass some directory paths as 'git-daemon' arguments, you can further restrict
2929
the offers to a whitelist comprising of those.
3030

31-
This is ideally suited for read-only updates, ie pulling from git repositories.
31+
This is ideally suited for read-only updates, i.e., pulling from git repositories.
3232

3333
OPTIONS
3434
-------

Documentation/git-diff-index.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ have not actually done a "git-update-index" on it yet - there is no
101101
torvalds@ppc970:~/v2.6/linux> git-diff-index HEAD
102102
*100644->100664 blob 7476bb......->000000...... kernel/sched.c
103103

104-
ie it shows that the tree has changed, and that `kernel/sched.c` has is
104+
i.e., it shows that the tree has changed, and that `kernel/sched.c` has is
105105
not up-to-date and may contain new stuff. The all-zero sha1 means that to
106106
get the real diff, you need to look at the object in the working directory
107107
directly rather than do an object-to-object diff.

Documentation/git-diff-tree.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ include::diff-options.txt[]
3232
<path>...::
3333
If provided, the results are limited to a subset of files
3434
matching one of these prefix strings.
35-
ie file matches `/^<pattern1>|<pattern2>|.../`
35+
i.e., file matches `/^<pattern1>|<pattern2>|.../`
3636
Note that this parameter does not provide any wildcard or regexp
3737
features.
3838

@@ -54,7 +54,7 @@ include::diff-options.txt[]
5454
+
5555
When a single commit is given on one line of such input, it compares
5656
the commit with its parents. The following flags further affects its
57-
behaviour. This does not apply to the case where two <tree-ish>
57+
behavior. This does not apply to the case where two <tree-ish>
5858
separated with a single space are given.
5959

6060
-m::

0 commit comments

Comments
 (0)