I am reading Oreilly's kurz & gut Git book. And I discovered, that it is possible to clone with a very shallow level by using the "--depth=" option. For example, if you want only to clone the repository with only the three latest commit, you may use:
$mygitworkingdirectory> git clone --depth=3 git:path/repository
Isn't that great. Git rocks !!! ;-)