fetch: merge fetching and consuming refs
[git/debian.git] / Documentation / config / stash.txt
blob9ed775281fb34f4e7ce0f7277784b7d74164daa1
1 stash.useBuiltin::
2         Unused configuration variable.  Used in Git versions 2.22 to
3         2.26 as an escape hatch to enable the legacy shellscript
4         implementation of stash.  Now the built-in rewrite of it in C
5         is always used. Setting this will emit a warning, to alert any
6         remaining users that setting this now does nothing.
8 stash.showIncludeUntracked::
9         If this is set to true, the `git stash show` command will show
10         the untracked files of a stash entry.  Defaults to false. See
11         description of 'show' command in linkgit:git-stash[1].
13 stash.showPatch::
14         If this is set to true, the `git stash show` command without an
15         option will show the stash entry in patch form.  Defaults to false.
16         See description of 'show' command in linkgit:git-stash[1].
18 stash.showStat::
19         If this is set to true, the `git stash show` command without an
20         option will show diffstat of the stash entry.  Defaults to true.
21         See description of 'show' command in linkgit:git-stash[1].