Skip to content

Commit f73ae1f

Browse files
Christian MederJunio C Hamano
authored andcommitted
Some typos and light editing of various manpages
Typos, light editing and clarifications. Signed-off-by: Christian Meder <chris@absolutegiganten.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent e091eb9 commit f73ae1f

14 files changed

+39
-38
lines changed

Documentation/cvs-migration.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The good news is that most people don't do that, and in fact most sane
2424
people think it's a bug in CVS that makes it tag (and check in changes)
2525
one file at a time. So most projects you'll ever see will use CVS
2626
'as if' it was sane. In which case you'll find it very easy indeed to
27-
move over to Git.
27+
move over to git.
2828

2929
First off: this is not a git tutorial. See
3030
link:tutorial.html[Documentation/tutorial.txt] for how git
@@ -229,7 +229,7 @@ does rename or copy would not show in the output, and if the
229229
"o-file.c", it would find the commit that changed the statement
230230
when it was in "o-file.c".
231231

232-
NOTE: The current versions of "git-diff-tree -C" is not eager
232+
NOTE: The current version of "git-diff-tree -C" is not eager
233233
enough to find copies, and it will miss the fact that a-file.c
234234
was created by copying o-file.c unless o-file.c was somehow
235235
changed in the same commit.

Documentation/diff-format.txt

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
The output format from "git-diff-index", "git-diff-tree" and
22
"git-diff-files" are very similar.
33

4-
These commands all compare two sets of things; what are
5-
compared are different:
4+
These commands all compare two sets of things; what is
5+
compared differs:
66

77
git-diff-index <tree-ish>::
88
compares the <tree-ish> and the files on the filesystem.
@@ -46,7 +46,7 @@ That is, from the left to the right:
4646
. path for "dst"; only exists for C or R.
4747
. an LF or a NUL when '-z' option is used, to terminate the record.
4848

49-
<sha1> is shown as all 0's if new is a file on the filesystem
49+
<sha1> is shown as all 0's if a file is new on the filesystem
5050
and it is out of sync with the cache.
5151

5252
Example:
@@ -91,7 +91,7 @@ For a path that is added, removed, or modified,
9191
where:
9292

9393
<old|new>-file:: are files GIT_EXTERNAL_DIFF can use to read the
94-
contents of <old|ne>,
94+
contents of <old|new>,
9595
<old|new>-hex:: are the 40-hexdigit SHA1 hashes,
9696
<old|new>-mode:: are the octal representation of the file modes.
9797

@@ -121,12 +121,11 @@ The `a/` and `b/` filenames are the same unless rename/copy is
121121
involved. Especially, even for a creation or a deletion,
122122
`/dev/null` is _not_ used in place of `a/` or `b/` filenames.
123123
+
124-
When rename/copy is involved, `file1` and `file2` shows the
124+
When rename/copy is involved, `file1` and `file2` show the
125125
name of the source file of the rename/copy and the name of
126126
the file that rename/copy produces, respectively.
127127

128-
2. It is followed by extended header lines that are one or
129-
more of:
128+
2. It is followed by one or more extended header lines:
130129

131130
old mode <mode>
132131
new mode <mode>

Documentation/diff-options.txt

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55
Synonym for "-p".
66

77
-r::
8-
Look recursively in subdirectories; this flag does not
9-
mean anything to commands other than "git-diff-tree";
10-
other diff commands always look at all the subdirectories.
8+
Look recursively in subdirectories; only used by "git-diff-tree";
9+
other diff commands always work recursively.
1110

1211
-z::
1312
\0 line termination on output
@@ -28,26 +27,26 @@
2827
Detect copies as well as renames.
2928

3029
--find-copies-harder::
31-
By default, -C option finds copies only if the original
32-
file of the copy was modified in the same changeset for
33-
performance reasons. This flag makes the command
30+
For performance reasons, by default, -C option finds copies only
31+
if the original file of the copy was modified in the same
32+
changeset. This flag makes the command
3433
inspect unmodified files as candidates for the source of
3534
copy. This is a very expensive operation for large
3635
projects, so use it with caution.
3736

3837
-l<num>::
3938
-M and -C options require O(n^2) processing time where n
40-
in the number of potential rename/copy targets. This
39+
is the number of potential rename/copy targets. This
4140
option prevents rename/copy detection from running if
42-
the number of rename/copy targets exceed the specified
41+
the number of rename/copy targets exceeds the specified
4342
number.
4443

4544
-S<string>::
46-
Look for differences that contains the change in <string>.
45+
Look for differences that contain the change in <string>.
4746

4847
--pickaxe-all::
4948
When -S finds a change, show all the changes in that
50-
changeset, not just the files that contains the change
49+
changeset, not just the files that contain the change
5150
in <string>.
5251

5352
-O<orderfile>::

Documentation/diffcore.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ diffcore-merge-broken
177177
---------------------
178178

179179
This transformation is used to merge filepairs broken by
180-
diffcore-break, and were not transformed into rename/copy by
180+
diffcore-break, and not transformed into rename/copy by
181181
diffcore-rename, back into a single modification. This always
182182
runs when diffcore-break is used.
183183

@@ -206,10 +206,10 @@ like these:
206206
* -B/60 (the same as above, since diffcore-break defaults to 50%).
207207

208208
Note that earlier implementation left a broken pair as a separate
209-
creation and deletion patches. This was unnecessary hack and
209+
creation and deletion patches. This was an unnecessary hack and
210210
the latest implementation always merges all the broken pairs
211211
back into modifications, but the resulting patch output is
212-
formatted differently to still let the reviewing easier for such
212+
formatted differently for easier review in case of such
213213
a complete rewrite by showing the entire contents of old version
214214
prefixed with '-', followed by the entire contents of new
215215
version prefixed with '+'.

Documentation/git-add.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ SYNOPSIS
1111

1212
DESCRIPTION
1313
-----------
14-
A simple wrapper to git-update-index to add files to the cache for people used
14+
A simple wrapper for git-update-index to add files to the cache for people used
1515
to do "cvs add".
1616

1717
OPTIONS

Documentation/git-apply.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ SYNOPSIS
1313

1414
DESCRIPTION
1515
-----------
16-
Reads supplied diff output and applies it on a GIT index file
16+
Reads supplied diff output and applies it on a git index file
1717
and a work tree.
1818

1919
OPTIONS

Documentation/git-applymbox.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ OPTIONS
2222
-q::
2323
Apply patches interactively. The user will be given
2424
opportunity to edit the log message and the patch before
25-
attempting to apply patch in each e-mail message.
25+
attempting to apply it.
2626

2727
-k::
2828
Usually the program 'cleans up' the Subject: header line

Documentation/git-archimport.txt

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,23 @@ it will just import it as a regular commit. If it can find it, it will mark it
2020
as a merge whenever possible (see discussion below).
2121

2222
The script expects you to provide the key roots where it can start the import
23-
from an 'initial import' or 'tag' type of Arch commit. It will follow and import
24-
new branches within the provided roots.
23+
from an 'initial import' or 'tag' type of Arch commit. It will follow and
24+
import new branches within the provided roots.
2525

2626
It expects to be dealing with one project only. If it sees
27-
branches that have different roots, it will refuse to run. In that case, edit your
28-
<archive/branch> parameters to define clearly the scope of the import.
27+
branches that have different roots, it will refuse to run. In that case,
28+
edit your <archive/branch> parameters to define clearly the scope of the
29+
import.
2930

30-
`git-archimport` uses `tla` extensively in the background to access the Arch repository.
31+
`git-archimport` uses `tla` extensively in the background to access the
32+
Arch repository.
3133
Make sure you have a recent version of `tla` available in the path. `tla` must
3234
know about the repositories you pass to `git-archimport`.
3335

3436
For the initial import `git-archimport` expects to find itself in an empty
3537
directory. To follow the development of a project that uses Arch, rerun
36-
`git-archimport` with the same parameters as the initial import to perform incremental imports.
38+
`git-archimport` with the same parameters as the initial import to perform
39+
incremental imports.
3740

3841
MERGES
3942
------

Documentation/git-bisect.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ During the bisection process, you can say
7676

7777
to see the currently remaining suspects in `gitk`.
7878

79-
The good/bad you told the command is logged, and `git bisect
79+
The good/bad input is logged, and `git bisect
8080
log` shows what you have done so far. You can truncate its
8181
output somewhere and save it in a file, and run
8282

Documentation/git-branch.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ OPTIONS
2323
The name of the branch to create.
2424

2525
start-point::
26-
Where to make the branch; defaults to HEAD.
26+
Where to create the branch; defaults to HEAD.
2727

2828
Author
2929
------

0 commit comments

Comments
 (0)