git - 如何clone仓库的一个文件
漂亮男人
漂亮男人 2017-05-02 09:45:54
0
1
661

有个project ,newstart.
它里面的文件如下
test1
test2
LICENSE
README.md

git clone https://github.com/someone/ne... /tmp/newstart
会拉取全部的四个文件。
test1
test2
LICENSE
README.md

现在我想仅仅获得test1这个文件夹和它里面的全部东西,请问,有无办法做到?

漂亮男人
漂亮男人

全部回复(1)
PHPzhong

需要git1.7以上

$ 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
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板