As already mentioned, you can clone repositories only in general, and not in part. If you need to, you could put different projects in one repository. This is good at subversion, but not recommended in Git. If so, divide the repository into several repositories (one for each project) and merge these repositories into a central one using git submodule.
source
share