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
git clone
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!