下载GitHub仓库的子目录

git clone 一般只能下载整个仓库。 
但仓库非常大,只想下载子目录,可以用svn的export命令 
注意:这个只是下载,想pull和push就不行了。 

例如: 

https://github.com/tensorflow/models  

是tensorflow的常用模型仓库,非常大。

我只想下载一个子文件夹:https://github.com/tensorflow/models/tree/master/official/wide_deep 

可以执行如下命令 :

svn export https://github.com/tensorflow/models/trunk/official/wide_deep 

对比一下两个路径 
https://github.com/tensorflow/models/tree/master/official/wide_deep 
https://github.com/tensorflow/models/trunk/official/wide_deep

你可能感兴趣的:(DL)