稀疏检出的方法
$ mkdir file
$ cd file
$ git init // 初始化空仓库
$ git remote add -f origin https://***.git //
$ git config core.sparsecheckout true // 开启稀疏模式
$ echo "**1" >> .git/info/sparse-checkout // 设置需Check Out的文件。直接从项目目录下开始
cat .git/info/sparse-checkout
$ git pull origin master // Check Out
... ...
修改检出目录:echo "**2" >> .git/info/sparse-checkout