Files
git/builtin
nalla 61f9c34d70 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>
2016-10-13 14:26:27 +02:00
..
2016-09-28 14:56:00 -07:00
2016-10-13 14:26:27 +02:00
2016-10-11 14:18:32 -07:00