Git for windows version 2.5.3 not able to push changes

后端 未结 5 1948
谎友^
谎友^ 2020-12-18 13:14

I am receiving errors below when I try to push changes(not a problem with memory, or other already issues already mention on stackoverflow), errors are gone when I uninstall

5条回答
  •  北海茫月
    2020-12-18 13:26

    This specific error just got fixed (or at least mitigated) with git-for-windows 2.6.2 (Oct. 19th, 2015)

    We no longer run out of page file space when git fetching large repositories.

    (applies for push too)

    See PR 486: Better mmap() emulation:

    a simple git fetch would produce this error output:

    fatal: mmap failed: No error
    fatal: write error: Invalid argument
    

    The reason was that several bits of our mmap() emulation left room for improvement. This Pull Request tries to close the gap.

    That involves compat/win32mmap.c, and that fix is not yet updated upstream (in git/git)

提交回复
热议问题