Sorry for being off topic, I didn’t know where else to ask.
I’m trying to add a feature to Godot but my GIT is going crazy, first I started getting weird errors when I pushed, but now I can’t even clone a Godot repository, I get this error:
I saw advice on Reddit to switch to HTTP1 or increase the buffer, but it didn’t help.
Seems like you are trying to clone the git html page, not the repository. Try
git clone 'https://github.com/JekSun97/godot.git'
Notice .git
at the end
No, unfortunately the error has not disappeared
I also tried downloading the repository and updating it, but the error still occurs
Are you trying to upload large file(s)? I’ve had trouble with that in the past so I steer clear from adding large files like videos to my repos.
I didn’t have this last week, and there’s no video in the Godot repository either
The same error message with a .git
link? What does git --version
print?
1 Like
Yes, there are no changes with .git.
git --version: git version 2.47.0.windows.2
Are you trying to download to or upload from a cloud storage synced location?
I’m trying to clone my repository, or update it to the current one, the whole GIT process is above in the screenshots.
My internet speed, as shown by Git, was critically reduced by 13% of the load, this problem is quite strange, and there can be many reasons for this.
For me, the following commands turned out to be the solution:
git config --global http.version HTTP/1.1
git config --global http.postBuffer 524288000
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999
To return everything to its place:
git config --global --unset http.version
git config --global --unset http.postBuffer
git config --global --unset http.lowSpeedLimit
git config --global --unset http.lowSpeedTime