Skip to content

Commit b04a01a

Browse files
authored
Merge pull request #936 from dinokaric/2.2-Format/Wording
Wording correction under "Removing Files" section
2 parents 350dce8 + d80bcae commit b04a01a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ This is convenient, but be careful; sometimes this flag will cause you to includ
500500
To remove a file from Git, you have to remove it from your tracked files (more accurately, remove it from your staging area) and then commit.
501501
The `git rm` command does that, and also removes the file from your working directory so you don't see it as an untracked file the next time around.
502502

503-
If you simply remove the file from your working directory, it shows up under the ``Changed but not updated'' (that is, _unstaged_) area of your `git status` output:
503+
If you simply remove the file from your working directory, it shows up under the ``Changes not staged for commit'' (that is, _unstaged_) area of your `git status` output:
504504

505505
[source,console]
506506
----

0 commit comments

Comments
 (0)