Refactor: change "folder" to "directory" where needed.

This commit fixes every instance in which the word "folder" is
incorrectly used instead of "directory".
This commit is contained in:
Marco Bonelli
2019-02-11 19:00:49 +01:00
committed by Agniva De Sarker
parent 2484529a83
commit 2599a6de48
65 changed files with 202 additions and 202 deletions

View File

@@ -19,7 +19,7 @@
`git checkout --track {{remote_name}}/{{branch_name}}`
- Discard all unstaged changes in the current folder (see `git reset` for more undo-like commands):
- Discard all unstaged changes in the current directory (see `git reset` for more undo-like commands):
`git checkout .`
@@ -27,6 +27,6 @@
`git checkout {{file_name}}`
- Replace a file in the current folder with the version of it committed in a given branch:
- Replace a file in the current directory with the version of it committed in a given branch:
`git checkout {{branch_name}} -- {{file_name}}`