Reputation: 2814
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
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