0

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?

Community
  • 1
  • 1
ilay zeidman
  • 2,654
  • 5
  • 23
  • 45

1 Answers1

2

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/
littlet
  • 207
  • 1
  • 7