What are the parameters of git clonedepth=1 used for?
depth=1
git clone --depth=1 git://someserver/somerepo
depth is used to specify the cloning depth. If it is 1, it means only clone the latest commit.
depth is used to specify the cloning depth. If it is 1, it means only clone the latest commit.