@@ -25,7 +25,7 @@ you want to understand Git's internals.
25
25
The core Git is often called "plumbing", with the prettier user
26
26
interfaces on top of it called "porcelain". You may not want to use the
27
27
plumbing directly very often, but it can be good to know what the
28
- plumbing does for when the porcelain isn't flushing.
28
+ plumbing does when the porcelain isn't flushing.
29
29
30
30
Back when this document was originally written, many porcelain
31
31
commands were shell scripts. For simplicity, it still uses them as
@@ -1368,7 +1368,7 @@ $ git repack
1368
1368
will do it for you. If you followed the tutorial examples, you
1369
1369
would have accumulated about 17 objects in `.git/objects/??/`
1370
1370
directories by now. 'git repack' tells you how many objects it
1371
- packed, and stores the packed file in `.git/objects/pack`
1371
+ packed, and stores the packed file in the `.git/objects/pack`
1372
1372
directory.
1373
1373
1374
1374
[NOTE]
@@ -1478,7 +1478,7 @@ You can repack this private repository whenever you feel like.
1478
1478
A recommended work cycle for a "subsystem maintainer" who works
1479
1479
on that project and has an own "public repository" goes like this:
1480
1480
1481
- 1. Prepare your work repository, by 'git clone' the public
1481
+ 1. Prepare your work repository, by running 'git clone' on the public
1482
1482
repository of the "project lead". The URL used for the
1483
1483
initial cloning is stored in the remote.origin.url
1484
1484
configuration variable.
@@ -1543,9 +1543,9 @@ like this:
1543
1543
Working with Others, Shared Repository Style
1544
1544
--------------------------------------------
1545
1545
1546
- If you are coming from CVS background, the style of cooperation
1546
+ If you are coming from a CVS background, the style of cooperation
1547
1547
suggested in the previous section may be new to you. You do not
1548
- have to worry. Git supports "shared public repository" style of
1548
+ have to worry. Git supports the "shared public repository" style of
1549
1549
cooperation you are probably more familiar with as well.
1550
1550
1551
1551
See linkgit:gitcvs-migration[7] for the details.
@@ -1635,7 +1635,7 @@ $ git show-branch
1635
1635
++* [master~2] Pretty-print messages.
1636
1636
------------
1637
1637
1638
- Note that you should not do Octopus because you can. An octopus
1638
+ Note that you should not do Octopus just because you can. An octopus
1639
1639
is a valid thing to do and often makes it easier to view the
1640
1640
commit history if you are merging more than two independent
1641
1641
changes at the same time. However, if you have merge conflicts
0 commit comments