从GitHub上下载单个文件(夹)

从GitHub上下载单个文件(夹)

使用 SVN 即可,举例说明:
譬如这个项目: Sample,里面有个文件夹dirName,打开dirName,其 URL 为: "https: //github.com/Sample/tree/master/dirName"
1、将上面URL中的/tree/master/ 换成 /trunk/,就是"https: //github.com/Sample/trunk/dirName"
2、然后, 输入:
svn checkout https: //github.com/Sample/trunk/dirName

PS: 第一次使用的话, 可能会出现下面这个提示:
R)eject, accept (t)emporarily or accept (p)ermanently?
输入 P 就行了.


转载自链接:https://www.zhihu.com/question/25369412/answer/30579415

你可能感兴趣的:(从GitHub上下载单个文件(夹))