git下载指定目录
Git1.7.0以后加入了Sparse Checkout模式,这使得Check Out指定文件或者文件夹成为可能。
具体实现如下1234567891011121314#照常创建新项目mkdir project_namecd project_namegit initgit remote add origin <url>#接下来,在Config中允许使用Sparse Checko...
阅读全文…