Skip to content

Commit 3c735e0

Browse files
jmahlergitster
authored andcommitted
Documentation: wording fixes in the user manual and glossary
Re-word the section on "Updating a repository with git fetch" in the user manual. Various other minor fixes in the manual and glossary. Signed-off-by: Jeremiah Mahler <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 4a28f16 commit 3c735e0

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

Documentation/glossary-content.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[[def_alternate_object_database]]alternate object database::
22
Via the alternates mechanism, a <<def_repository,repository>>
33
can inherit part of its <<def_object_database,object database>>
4-
from another object database, which is called "alternate".
4+
from another object database, which is called an "alternate".
55

66
[[def_bare_repository]]bare repository::
77
A bare repository is normally an appropriately

Documentation/user-manual.txt

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -416,12 +416,11 @@ REVISIONS" section of linkgit:gitrevisions[7].
416416
Updating a repository with git fetch
417417
------------------------------------
418418

419-
Eventually the developer cloned from will do additional work in her
420-
repository, creating new commits and advancing the branches to point
421-
at the new commits.
419+
After you clone a repository and commit a few changes of your own, you
420+
may wish to check the original repository for updates.
422421

423-
The command `git fetch`, with no arguments, will update all of the
424-
remote-tracking branches to the latest version found in her
422+
The `git-fetch` command, with no arguments, will update all of the
423+
remote-tracking branches to the latest version found in the original
425424
repository. It will not touch any of your own branches--not even the
426425
"master" branch that was created for you on clone.
427426

@@ -1811,8 +1810,8 @@ manner.
18111810
You can then import these into your mail client and send them by
18121811
hand. However, if you have a lot to send at once, you may prefer to
18131812
use the linkgit:git-send-email[1] script to automate the process.
1814-
Consult the mailing list for your project first to determine how they
1815-
prefer such patches be handled.
1813+
Consult the mailing list for your project first to determine
1814+
their requirements for submitting patches.
18161815

18171816
[[importing-patches]]
18181817
Importing patches to a project
@@ -2255,7 +2254,7 @@ $ git checkout test && git merge speed-up-spinlocks
22552254
It is unlikely that you would have any conflicts here ... but you might if you
22562255
spent a while on this step and had also pulled new versions from upstream.
22572256

2258-
Some time later when enough time has passed and testing done, you can pull the
2257+
Sometime later when enough time has passed and testing done, you can pull the
22592258
same branch into the `release` tree ready to go upstream. This is where you
22602259
see the value of keeping each patch (or patch series) in its own branch. It
22612260
means that the patches can be moved into the `release` tree in any order.

0 commit comments

Comments
 (0)