Skip to content

Commit db4aa8f

Browse files
committed
Merge pull request #347 from nobozo/master
Several Trivial Text Changes
2 parents 4e8ad42 + 6d9867f commit db4aa8f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

book/02-git-basics/sections/recording-changes.asc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Changes not staged for commit:
105105
106106
----
107107

108-
The ``CONTRIBUTING.md'' file appears under a section named ``Changed but not staged for commit'' – which means that a file that is tracked has been modified in the working directory but not yet staged.
108+
The ``CONTRIBUTING.md'' file appears under a section named ``Changes not staged for commit'' – which means that a file that is tracked has been modified in the working directory but not yet staged.
109109
To stage it, you run the `git add` command.
110110
`git add` is a multipurpose command – you use it to begin tracking new files, to stage files, and to do other things like marking merge-conflicted files as resolved.
111111
It may be helpful to think of it more as ``add this content to the next commit'' rather than ``add this file to the project''.(((git commands, add)))
@@ -266,7 +266,7 @@ On branch master
266266
Changes to be committed:
267267
(use "git reset HEAD <file>..." to unstage)
268268
269-
new file: README
269+
modified: README
270270
271271
Changes not staged for commit:
272272
(use "git add <file>..." to update what will be committed)

book/02-git-basics/sections/viewing-history.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ In <<limit_options>> we'll list these and a few other common options for your re
273273
| `-S` | Only show commits adding or removing code matching the string
274274
|================================
275275

276-
For example, if you want to see which commits modifying test files in the Git source code history were committed by Junio Hamano and were not merges in the month of October 2008, you can run something like this:(((log filtering)))
276+
For example, if you want to see which commits modifying test files in the Git source code history were committed by Junio Hamano and were not merged in the month of October 2008, you can run something like this:(((log filtering)))
277277

278278
[source,console]
279279
----

0 commit comments

Comments
 (0)