Skip to content

Commit 8943867

Browse files
author
Junio C Hamano
committed
Documentation: spell.
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent f1ec72b commit 8943867

17 files changed

+20
-20
lines changed

Documentation/cvs-migration.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ mailing list archives for details).
138138
git has a couple of alternatives, though, that you may find sufficient
139139
or even superior depending on your use. One is called "git-whatchanged"
140140
(for obvious reasons) and the other one is called "pickaxe" ("a tool for
141-
the software archeologist").
141+
the software archaeologist").
142142

143143
The "git-whatchanged" script is a truly trivial script that can give you
144144
a good overview of what has changed in a file or a directory (or an

Documentation/diff-format.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ git specific extension to diff format
117117
What -p option produces is slightly different from the
118118
traditional diff format.
119119

120-
1. It is preceeded with a "git diff" header, that looks like
120+
1. It is preceded with a "git diff" header, that looks like
121121
this:
122122

123123
diff --git a/file1 b/file2

Documentation/diff-options.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
--abbrev[=<n>]::
2222
Instead of showing the full 40-byte hexadecimal object
2323
name in diff-raw format output and diff-tree header
24-
lines, show only handful dhexigits prefix. This is
24+
lines, show only handful hexdigits prefix. This is
2525
independent of --full-index option above, which controls
2626
the diff-patch output format. Non default number of
2727
digits can be specified with --abbrev=<n>.

Documentation/git-add.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ DISCUSSION
3131
----------
3232

3333
The list of <file> given to the command is fed to `git-ls-files`
34-
command to list files that are not registerd in the index and
34+
command to list files that are not registered in the index and
3535
are not ignored/excluded by `$GIT_DIR/info/exclude` file or
3636
`.gitignore` file in each directory. This means two things:
3737

Documentation/git-archimport.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ DESCRIPTION
1616
-----------
1717
Imports a project from one or more Arch repositories. It will follow branches
1818
and repositories within the namespaces defined by the <archive/branch>
19-
parameters suppplied. If it cannot find the remote branch a merge comes from
19+
parameters supplied. If it cannot find the remote branch a merge comes from
2020
it will just import it as a regular commit. If it can find it, it will mark it
2121
as a merge whenever possible (see discussion below).
2222

Documentation/git-diff-index.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ If '--cached' is specified, it allows you to ask:
5353
contents (the ones I'd write with a "git-write-tree")
5454

5555
For example, let's say that you have worked on your working directory, updated
56-
some files in the index and are ready to commit. You want to see eactly
56+
some files in the index and are ready to commit. You want to see exactly
5757
*what* you are going to commit is without having to write a new tree
5858
object and compare it that way, and to do that, you just do
5959

@@ -110,7 +110,7 @@ NOTE: As with other commands of this type, "git-diff-index" does not
110110
actually look at the contents of the file at all. So maybe
111111
`kernel/sched.c` hasn't actually changed, and it's just that you
112112
touched it. In either case, it's a note that you need to
113-
"git-upate-index" it to make the index be in sync.
113+
"git-update-index" it to make the index be in sync.
114114

115115
NOTE: You can have a mixture of files show up as "has been updated"
116116
and "is still dirty in the working directory" together. You can always

Documentation/git-diff-tree.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ separated with a single space are given.
6262
-s::
6363
By default, "git-diff-tree --stdin" shows differences,
6464
either in machine-readable form (without '-p') or in patch
65-
form (with '-p'). This output can be supressed. It is
65+
form (with '-p'). This output can be suppressed. It is
6666
only useful with '-v' flag.
6767

6868
-v::

Documentation/git-diff.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ $ git diff HEAD^ HEAD <3>
6767
<1> instead of using the tip of the current branch, compare with the
6868
tip of "test" branch.
6969
<2> instead of comparing with the tip of "test" branch, compare with
70-
the tip of the curren branch, but limit the comparison to the
70+
the tip of the current branch, but limit the comparison to the
7171
file "test".
7272
<3> compare the version before the last commit and the last commit.
7373
------------

Documentation/git-ls-files.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ OPTIONS
7474
H:: cached
7575
M:: unmerged
7676
R:: removed/deleted
77-
C:: modifed/changed
77+
C:: modified/changed
7878
K:: to be killed
7979
? other
8080

Documentation/git-pack-objects.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ base-name::
4646
output of the command.
4747

4848
--stdout::
49-
Write the pack contents (what would have been writtin to
49+
Write the pack contents (what would have been written to
5050
.pack file) out to the standard output.
5151

5252
--window and --depth::

0 commit comments

Comments
 (0)