Procházet zdrojové kódy

git-checkout: "modifications" --> "changes"

Waldir Pimenta před 7 roky
rodič
revize
05780d6183
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      pages/common/git-checkout.md

+ 2 - 2
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}}`