Skip to content

Commit 2e4526f

Browse files
committed
Update recording-changes.asc
Fix issues #338 and #340
1 parent 627a110 commit 2e4526f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
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)

0 commit comments

Comments
 (0)