ilay zeidman
ilay zeidman

Reputation: 2814

Try to copy specific folder from github with subversion failed

I read this stack overflow question and tries to download specific angular js source code with the following svn command:

svn export https://github.com/angular/code.angularjs.org.git/1.2.13/ c:\angularVersion

But I get the following error:

svn: E170000: URL 'https://github.com/angular/code.angularjs.org.git/1.2.13' dosn't exist

What am I miss?

Upvotes: 0

Views: 46

Answers (1)

littlet
littlet

Reputation: 197

Cause SVN and git have different directory structure, you may want this:

svn export https://github.com/angular/code.angularjs.org.git/trunk/1.2.13/

Upvotes: 2

Related Questions