recherche

Maison  >  Questions et réponses  >  le corps du texte

git - Comment cloner un fichier dans un référentiel

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 ?

漂亮男人漂亮男人2791 Il y a quelques jours665

répondre à tous(1)je répondrai

  • PHPz

    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

    répondre
    0
  • Annulerrépondre