尝试从 github 复制特定文件夹,但颠覆失败
Try to copy specific folder from github with subversion failed
我使用以下 svn 命令读取 this stack overflow question and tries to download specific angular js source code:
svn export https://github.com/angular/code.angularjs.org.git/1.2.13/ c:\angularVersion
但我收到以下错误:
svn: E170000: URL 'https://github.com/angular/code.angularjs.org.git/1.2.13' 不存在
我想念什么?
因为 SVN 和 git 有不同的目录结构,你可能需要这个:
svn export https://github.com/angular/code.angularjs.org.git/trunk/1.2.13/
我使用以下 svn 命令读取 this stack overflow question and tries to download specific angular js source code:
svn export https://github.com/angular/code.angularjs.org.git/1.2.13/ c:\angularVersion
但我收到以下错误:
svn: E170000: URL 'https://github.com/angular/code.angularjs.org.git/1.2.13' 不存在
我想念什么?
因为 SVN 和 git 有不同的目录结构,你可能需要这个:
svn export https://github.com/angular/code.angularjs.org.git/trunk/1.2.13/