github只下载特定文件夹内容

想把github上有关胶囊神经网络的部分下载下来,但是其他部分不需要下载,查找了下资料,发现了一个方法

在Ubuntu下安装svn工具,输入

apt install subversion

然后创建一个新文件夹,作为svn服务器位置,我设置的位置是/home/svn

svnserve -d -r /home/svn

将网址中的“/tree/master/”换成 “/trunk/”,源链接为https://github.com/Sarasra/models/tree/master/research/capsules,修改为

svn checkout https://github.com/Sarasra/models/trunk/research/capsules

猜你喜欢

转载自blog.csdn.net/qq_18483627/article/details/81588839