From d80bcae98f224522bd47cddfefdb564a235fe8e2 Mon Sep 17 00:00:00 2001 From: Dino Karic Date: Sat, 16 Dec 2017 16:17:22 +0100 Subject: [PATCH] Wording correction under "Removing Files" section --- book/02-git-basics/sections/recording-changes.asc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/02-git-basics/sections/recording-changes.asc b/book/02-git-basics/sections/recording-changes.asc index b4f7ec0be..5fbdc5e0c 100644 --- a/book/02-git-basics/sections/recording-changes.asc +++ b/book/02-git-basics/sections/recording-changes.asc @@ -500,7 +500,7 @@ This is convenient, but be careful; sometimes this flag will cause you to includ 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. 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. -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: +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: [source,console] ----