ssh - How to push a large git repository without launching a git pack-index command? -
i know this question. performed local modifications, seem, official git project perform agit fsck
locally before pushing origin.
c:\cygwin\home\example\utils>git push origin master warning: permanently added '196.30.252.130' (rsa) list of known hosts. fatal: out of memory, malloc failed (tried allocate 2285522160 bytes)
and command fails…
the problem while pack format allows (size_t or unsigned long), official git project use 32 bits signed integers internally handling tree objects size (limiting 2gb).
so there command won’t perform fsck before pushing ? or project/library (i couldn't found how libgit2) allowing me stay on laptop ?
alternative documentation git on ssh protocol, can implement part myself.
Comments
Post a Comment