I am cloning a repository that is on BitBucket server, but my cloning speed is extremely slow. See the attached 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.
11 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 disabledThe first command in each pair will display the setting's value. Use the second command if it is different from the indicated setting.