diff options
author | Liam Beguin <liambeguin@gmail.com> | 2017-06-18 00:30:50 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-06-19 07:16:36 +0200 |
commit | e01db917d8e5c66f9f90bf8c44995cf47200273a (patch) | |
tree | a1733a90149933d7902f1906c4c67e02d3bd218c /Documentation/gitcli.txt | |
parent | sub-process: correct path to API docs in a comment (diff) | |
download | git-e01db917d8e5c66f9f90bf8c44995cf47200273a.tar.xz git-e01db917d8e5c66f9f90bf8c44995cf47200273a.zip |
stash: update documentation to use 'stash entry'
Most of the time, a 'stash entry' is called a 'stash'. Lets try to make
this more consistent and use 'stash entry' instead.
Signed-off-by: Liam Beguin <liambeguin@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/gitcli.txt')
-rw-r--r-- | Documentation/gitcli.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/gitcli.txt b/Documentation/gitcli.txt index dfe7d83727..9f13266a68 100644 --- a/Documentation/gitcli.txt +++ b/Documentation/gitcli.txt @@ -194,7 +194,7 @@ different things. * The `--index` option is used to ask a command that usually works on files in the working tree to *also* affect the index. For example, `git stash apply` usually - merges changes recorded in a stash to the working tree, + merges changes recorded in a stash entry to the working tree, but with the `--index` option, it also merges changes to the index as well. |