summaryrefslogtreecommitdiff
path: root/Documentation/config.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-06-26 21:09:29 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-06-26 21:09:29 (GMT)
commit849b44cdf193908dfe1cadc731fb23019b53a211 (patch)
tree06c56c63d2ffb408db7682c44fedc7c49a3f3787 /Documentation/config.txt
parente629a7d28a405e48fae6b064a781a10e885159fc (diff)
parent90f64f1cf5fe20bbac7353028e23f28ceca61195 (diff)
downloadgit-849b44cdf193908dfe1cadc731fb23019b53a211.zip
git-849b44cdf193908dfe1cadc731fb23019b53a211.tar.gz
git-849b44cdf193908dfe1cadc731fb23019b53a211.tar.bz2
Merge branch 'lb/status-stash-count'
"git status" learned to optionally give how many stash entries the user has in its output. * lb/status-stash-count: glossary: define 'stash entry' status: add optional stash count information stash: update documentation to use 'stash entry'
Diffstat (limited to 'Documentation/config.txt')
-rw-r--r--Documentation/config.txt11
1 files changed, 8 insertions, 3 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt
index 781ce3e..2845e8d 100644
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
@@ -2623,7 +2623,7 @@ rebase.autoSquash::
If set to true enable `--autosquash` option by default.
rebase.autoStash::
- When set to true, automatically create a temporary stash
+ When set to true, automatically create a temporary stash entry
before the operation begins, and apply it after the operation
ends. This means that you can run rebase on a dirty worktree.
However, use with care: the final stash application after a
@@ -2995,6 +2995,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
@@ -3032,12 +3037,12 @@ status.submoduleSummary::
stash.showPatch::
If this is set to true, the `git stash show` command without an
- option will show the stash in patch form. Defaults to false.
+ option will show the stash entry in patch form. Defaults to false.
See description of 'show' command in linkgit:git-stash[1].
stash.showStat::
If this is set to true, the `git stash show` command without an
- option will show diffstat of the stash. Defaults to true.
+ option will show diffstat of the stash entry. Defaults to true.
See description of 'show' command in linkgit:git-stash[1].
submodule.<name>.url::