Git Clone is too slow

git, git-bash, git-clone, tortoisegit

Solution

Maybe you can fetch only the latest revision first and then fetch the rest:

$ git clone --depth=1 git@github.com:joe/hello-world.git
$ cd hello-world
$ git fetch --unshallow

Thanks this article!

Problem

This is my first time to construct the git server. When I use TortoiseGit-1.8.1.0-32bit to handle the operation, everything is fine! But if i use the `git clone` command or git bash, the git clone process speed is so slow. I've attached two images showing the relative `git clone` transfer speeds below. Can anybody give me some suggestions?

Original source