Files
git/builtin
nalla c04ae655a9 mingw: explicitly fflush stdout
For performance reasons `stdout` is not unbuffered by default. That leads
to problems if after printing to `stdout` a read on `stdin` is performed.

For that reason interactive commands like `git clean -i` do not function
properly anymore if the `stdout` is not flushed by `fflush(stdout)` before
trying to read from `stdin`.

In the case of `git clean -i` all reads on `stdin` were preceded by a
`fflush(stdout)` call.

Signed-off-by: nalla <nalla@hamal.uberspace.de>
2015-11-07 16:20:21 +01:00
..
2015-11-07 16:20:21 +01:00
2015-11-05 12:18:13 -08:00
2015-09-28 14:57:10 -07:00
2015-09-28 19:16:54 -07:00
2015-10-16 09:45:15 -07:00