在 Windows 7 64 位上使用 Git 版本 2.19.1.windows.1。
我正在尝试在 D:/Users/Della/Documents/Python_Scripts/
中运行git clone https://gitlab.com/forkingpin/dui-dashboard.git
在 git bash 上。到目前为止,该存储库仅包含 59 字节的自述文件。我收到的错误消息是
fatal: Out of memory, malloc failed (tried to allocate 1744830464 bytes)
fatal: not a git repository: 'D:/Users/Della/Documents/Python_Scripts/
出路何在?
注意事项。
我在将提交的更改(在 Windows 上)推送到另一个存储库时遇到了类似的问题。我通过附加 .git/config 来纠正这个问题
[http]
postbuffer = 5m
但那是针对现有存储库的。在克隆配置文件之前我无法获得它。
尝试相同的命令是否可以在常规 CMD(不是 git bash)中工作,您首先设置了简化的 PATH:
set PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\
set GH=C:\path\to\git
set PATH=%GH%\bin;%GH%\usr\bin;%GH%\mingw64\bin;%PATH%
cd D:\Users\Della\Documents\Python_Scripts
git clone https://gitlab.com/forkingpin/dui-dashboard.git
cd dui-dashboard
dir