mirror of
https://github.com/git/git.git
synced 2024-11-24 18:33:43 +08:00
deeaf5ee07
In 8a2cd3f512
(stash: remove the stash.useBuiltin setting, 2020-03-03),
we removed the setting, and for a couple of major versions, we still
documented the setting, telling users that it is gone.
We can now safely remove even the documentation.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
15 lines
634 B
Plaintext
15 lines
634 B
Plaintext
stash.showIncludeUntracked::
|
|
If this is set to true, the `git stash show` command will show
|
|
the untracked files of a stash entry. Defaults to false. See
|
|
description of 'show' command in linkgit:git-stash[1].
|
|
|
|
stash.showPatch::
|
|
If this is set to true, the `git stash show` command without an
|
|
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 entry. Defaults to true.
|
|
See description of 'show' command in linkgit:git-stash[1].
|