Skip to content

Commit 8183b63

Browse files
committed
Merge branch 'sn/typo-grammo-phraso-fixes'
Many typos, ungrammatical sentences and wrong phrasing have been fixed. * sn/typo-grammo-phraso-fixes: t/README: fix multi-prerequisite example doc/gitk: s/sticked/stuck/ git-jump: admit to passing merge mode args to ls-files doc/diff-options: improve wording of the log.diffMerges mention doc: fix some typos, grammar and wording issues
2 parents 2e8e77c + f0a39ba commit 8183b63

File tree

14 files changed

+41
-42
lines changed

14 files changed

+41
-42
lines changed

Documentation/SubmittingPatches

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -393,8 +393,8 @@ mailing list{security-ml}, instead of the public mailing list.
393393

394394
Learn to use format-patch and send-email if possible. These commands
395395
are optimized for the workflow of sending patches, avoiding many ways
396-
your existing e-mail client that is optimized for "multipart/*" mime
397-
type e-mails to corrupt and render your patches unusable.
396+
your existing e-mail client (often optimized for "multipart/*" MIME
397+
type e-mails) might render your patches unusable.
398398

399399
People on the Git mailing list need to be able to read and
400400
comment on the changes you are submitting. It is important for
@@ -515,8 +515,8 @@ repositories.
515515

516516
git://git.ozlabs.org/~paulus/gitk
517517

518-
Those who are interested in improve gitk can volunteer to help Paul
519-
in maintaining it cf. <YntxL/fTplFm8lr6@cleo>.
518+
Those who are interested in improving gitk can volunteer to help Paul
519+
maintain it, cf. <YntxL/fTplFm8lr6@cleo>.
520520

521521
- `po/` comes from the localization coordinator, Jiang Xin:
522522

@@ -556,7 +556,7 @@ help you find out who they are.
556556

557557
In any time between the (2)-(3) cycle, the maintainer may pick it up
558558
from the list and queue it to `seen`, in order to make it easier for
559-
people play with it without having to pick up and apply the patch to
559+
people to play with it without having to pick up and apply the patch to
560560
their trees themselves.
561561

562562
[[patch-status]]

Documentation/config/transfer.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ exposure, e.g. because:
2121
system.
2222
* The git programs will pass the full URL to one another as arguments
2323
on the command-line, meaning the credentials will be exposed to other
24-
users on OS's or systems that allow other users to see the full
24+
unprivileged users on systems that allow them to see the full
2525
process list of other users. On linux the "hidepid" setting
2626
documented in procfs(5) allows for configuring this behavior.
2727
+

Documentation/diff-options.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ off, none::
7676
+
7777
on, m::
7878
Make diff output for merge commits to be shown in the default
79-
format. The default format could be changed using
79+
format. The default format can be changed using
8080
`log.diffMerges` configuration variable, whose default value
8181
is `separate`.
8282
+
@@ -314,7 +314,7 @@ ifndef::git-format-patch[]
314314

315315
-z::
316316
ifdef::git-log[]
317-
Separate the commits with NULs instead of with new newlines.
317+
Separate the commits with NULs instead of newlines.
318318
+
319319
Also, when `--raw` or `--numstat` has been given, do not munge
320320
pathnames and use NULs as output field terminators.

Documentation/git-branch.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ superproject's "origin/main", but tracks the submodule's "origin/main".
324324
multiple times, in which case the last key becomes the primary
325325
key. The keys supported are the same as those in `git
326326
for-each-ref`. Sort order defaults to the value configured for the
327-
`branch.sort` variable if exists, or to sorting based on the
327+
`branch.sort` variable if it exists, or to sorting based on the
328328
full refname (including `refs/...` prefix). This lists
329329
detached HEAD (if present) first, then local branches and
330330
finally remote-tracking branches. See linkgit:git-config[1].

Documentation/git-range-diff.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ A typical output of `git range-diff` would look like this:
166166

167167
In this example, there are 3 old and 3 new commits, where the developer
168168
removed the 3rd, added a new one before the first two, and modified the
169-
commit message of the 2nd commit as well its diff.
169+
commit message of the 2nd commit as well as its diff.
170170

171171
When the output goes to a terminal, it is color-coded by default, just
172172
like regular `git diff`'s output. In addition, the first line (adding a

Documentation/git.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ foo.bar= ...`) sets `foo.bar` to the empty string which `git config
9696
to avoid ambiguity with `<name>` containing one.
9797
+
9898
This is useful for cases where you want to pass transitory
99-
configuration options to git, but are doing so on OS's where
100-
other processes might be able to read your cmdline
101-
(e.g. `/proc/self/cmdline`), but not your environ
99+
configuration options to git, but are doing so on operating systems
100+
where other processes might be able to read your command line
101+
(e.g. `/proc/self/cmdline`), but not your environment
102102
(e.g. `/proc/self/environ`). That behavior is the default on
103103
Linux, but may not be on your system.
104104
+

Documentation/gitattributes.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1151,8 +1151,8 @@ will be stored via placeholder `%P`.
11511151
^^^^^^^^^^^^^^^^^^^^^^
11521152

11531153
This attribute controls the length of conflict markers left in
1154-
the work tree file during a conflicted merge. Only setting to
1155-
the value to a positive integer has any meaningful effect.
1154+
the work tree file during a conflicted merge. Only a positive
1155+
integer has a meaningful effect.
11561156

11571157
For example, this line in `.gitattributes` can be used to tell the merge
11581158
machinery to leave much longer (instead of the usual 7-character-long)

Documentation/giteveryday.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ without a formal "merging". Or longhand +
229229
git am -3 -k`
230230

231231
An alternate participant submission mechanism is using the
232-
`git request-pull` or pull-request mechanisms (e.g as used on
232+
`git request-pull` or pull-request mechanisms (e.g. as used on
233233
GitHub (www.github.com) to notify your upstream of your
234234
contribution.
235235

Documentation/gitk.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ changes each commit introduces are shown. Finally, it supports some
2626
gitk-specific options.
2727

2828
gitk generally only understands options with arguments in the
29-
'sticked' form (see linkgit:gitcli[7]) due to limitations in the
29+
'stuck' form (see linkgit:gitcli[7]) due to limitations in the
3030
command-line parser.
3131

3232
rev-list options and arguments

contrib/README

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ This is the same way as how I have been treating gitk, and to a
2323
lesser degree various foreign SCM interfaces, so you know the
2424
drill.
2525

26-
I expect that things that start their life in the contrib/ area
26+
I expect things that start their life in the contrib/ area
2727
to graduate out of contrib/ once they mature, either by becoming
2828
projects on their own, or moving to the toplevel directory. On
2929
the other hand, I expect I'll be proposing removal of disused
3030
and inactive ones from time to time.
3131

3232
If you have new things to add to this area, please first propose
3333
it on the git mailing list, and after a list discussion proves
34-
there are some general interests (it does not have to be a
34+
there is general interest (it does not have to be a
3535
list-wide consensus for a tool targeted to a relatively narrow
3636
audience -- for example I do not work with projects whose
3737
upstream is svn, so I have no use for git-svn myself, but it is

0 commit comments

Comments
 (0)