Git for Windows installs "Git Bash," a bash shell that works in Windows, which is very nice. It's based on MinTTY, I believe.
As well as bash shell scripts, it can also execute Windows batch (.bat) files, e.g.
$ ./some-batch-file.bat
executes without any issue.
But tab-completion doesn't work on these batch files. Typing ./some-TAB has no effect.
Is there some way to enable tab-completion for .bat files in Git bash?