Am 04.01.23 um 07:37 schrieb Junio C Hamano: > René Scharfe <l.s.r@xxxxxx> writes: > >> GIT_FLUSH=10000000000 yes if stdin is not a file > > Is this because the int is so large that git_parse_signed() notices > that it is out of bound (hence "bogus")? Yes, atoi() overflows silently and git_parse_maybe_bool() returns -1. René