If I run
git -c diff.mnemonicprefix=true diff stash@{0} $(git branch --show-current)
the first line in the output is still
diff --git a/file.txt b/file.txt
as if I hadn't used diff.mnemonicPrefix.
Why is this? And can it be "fixed"?
A stash is not one of the cases listed in https://git-scm.com/docs/diff-config#Documentation/diff-config.txt-diffmnemonicPrefix where this option would change the output.
stash@{0}and the head of your active branch), I think mnemonicprefix keeps the standarda/... b/...in this case.