Maison > Questions et réponses > le corps du texte
Il y a un projet, newstart.
Les fichiers qu'il contient sont les suivants
test1
test2
LICENCE
README.md
git clone https://github.com/someone/ne... /tmp/newstart
extraira les quatre fichiers.
test1
test2
LICENCE
README.md
Maintenant, je veux obtenir uniquement le dossier test1 et tout ce qu'il contient. Existe-t-il un moyen de le faire ?
PHPz2017-05-02 09:47:54
Nécessite git1.7 ou supérieur
$ mkdir test
$ cd test
$ git init
$ git remote add -f origin https://github.com/Rozbo/puck.git
$ git config core.sparsecheckout true #开启Sparse Checkout模式
$ echo "app" >> .git/info/sparse-checkout #设置仅拉取app这个文件夹
$ git pull origin master