diff options
author | Liam Beguin <liambeguin@gmail.com> | 2017-06-17 18:30:51 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-06-18 22:17:47 -0700 |
commit | c1b5d0194b98bd3d0acc9cec7070808fbbe6a740 (patch) | |
tree | 05c81f1a33815352c41e1a0b17bdeb005913379e /Documentation/config.txt | |
parent | e01db917d8e5c66f9f90bf8c44995cf47200273a (diff) | |
download | git-c1b5d0194b98bd3d0acc9cec7070808fbbe6a740.tar.gz |
status: add optional stash count information
Introduce '--show-stash' and its configuration option 'status.showStash'
to allow git-status to show information about currently stashed entries.
Signed-off-by: Liam Beguin <liambeguin@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/config.txt')
-rw-r--r-- | Documentation/config.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index 23b807065d..e83b0f6415 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -2992,6 +2992,11 @@ status.displayCommentPrefix:: behavior of linkgit:git-status[1] in Git 1.8.4 and previous. Defaults to false. +status.showStash:: + If set to true, linkgit:git-status[1] will display the number of + entries currently stashed away. + Defaults to false. + status.showUntrackedFiles:: By default, linkgit:git-status[1] and linkgit:git-commit[1] show files which are not currently tracked by Git. Directories which |