On Thu, May 24 2018, Thomas Braun wrote: > Am 24.05.2018 um 17:25 schrieb Ævar Arnfjörð Bjarmason: >> When I do: >> >> git -c fetch.fsckObjects=true clone git@xxxxxxxxxx:robbyrussell/oh-my-zsh.git >> >> I get: >> >> error: object 2b7227859263b6aabcc28355b0b994995b7148b6: zeroPaddedFilemode: contains zero-padded file modes >> fatal: Error in object >> fatal: index-pack failed >> >> [...] > > Doing > > git clone --config transfer.fsckobjects=false --config > receive.fsckobjects=false --config fetch.fsckobjects=false > git@xxxxxxxxxx:robbyrussell/oh-my-zsh.git > > does the trick here (stolen from [1]). > > $ git --version > git version 2.17.0.windows.1 > > I don't know why though. Yeah, because it entirely turns off fsck on fetch, and we didn't have any way to selectively disable just some stuff until the patch series I just sent (https://public-inbox.org/git/20180524193516.28713-1-avarab@xxxxxxxxx/) > [1]: > https://github.com/michaeljones/breathe/issues/340#issuecomment-390775142