From 05780d6183e838c11e881d1a3cdb7c778d99d211 Mon Sep 17 00:00:00 2001 From: Waldir Pimenta Date: Mon, 15 May 2017 17:54:24 +0100 Subject: [PATCH] git-checkout: "modifications" --> "changes" --- pages/common/git-checkout.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/common/git-checkout.md b/pages/common/git-checkout.md index fff881622e..1cbcd946d3 100644 --- a/pages/common/git-checkout.md +++ b/pages/common/git-checkout.md @@ -14,11 +14,11 @@ `git checkout --track {{remote_name}}/{{branch_name}}` -- Discard all unstaged modifications in the current folder (see `git reset` for more undo-like commands): +- Discard all unstaged changes in the current folder (see `git reset` for more undo-like commands): `git checkout .` -- Discard unstaged modifications to a given file: +- Discard unstaged changes to a given file: `git checkout {{file_name}}`