diff options
author | Lars Vogel <lars.vogel@gmail.com> | 2016-01-21 11:09:15 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-01-21 09:06:35 -0800 |
commit | bd02e97f68b672598c52a39cb8eba508ef7c53bf (patch) | |
tree | f6a75172e70ae5ea3737dec15a666cadd6495ab7 /Documentation/git-add.txt | |
parent | Git 2.5.4 (diff) | |
download | tgif-bd02e97f68b672598c52a39cb8eba508ef7c53bf.tar.xz |
git-add doc: do not say working directory when you mean working tree
The usage of working directory is inconsistent in the git add help.
Also http://git-scm.com/docs/git-clone speaks only about working tree.
Remaining entry found by "git grep -B1 '^directory' git-add.txt" really
relates to a directory.
Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-add.txt')
-rw-r--r-- | Documentation/git-add.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-add.txt b/Documentation/git-add.txt index fe5282f130..6a96a669c2 100644 --- a/Documentation/git-add.txt +++ b/Documentation/git-add.txt @@ -24,7 +24,7 @@ remove paths that do not exist in the working tree anymore. The "index" holds a snapshot of the content of the working tree, and it is this snapshot that is taken as the contents of the next commit. Thus -after making any changes to the working directory, and before running +after making any changes to the working tree, and before running the commit command, you must use the `add` command to add any new or modified files to the index. |