Extremely slow git clone on windows

I am cloning a repository that is on BitBucket server, but my cloning speed is extremely slow. See the attached screenshot.

Screenshot

I tried cloning with TortoiseGit, GitBash, SourceTree but all of them have the same issue. I saw many related question to this but none of them helped.

1

1 Answer

The postGit clone in windows much slower than in linuxsays to verify your network interface parameters. The interface with the Git server might use inefficient settings.

The accepted solution was to run in an elevated Command Prompt the following commands:

netsh interface tcp show global
netsh interface tcp set global autotuninglevel=normal
netsh interface tcp show heuristics
netsh interface tcp set heuristics disabled

The first command in each pair will display the setting's value. Use the second command if it is different from the indicated setting.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like