1

I try to do upload a release note from my Ubuntu to a SVN repository:

svn import -m "Release Notes" Release_Notes_2.2.0.pdf https://myrepo.com/svn/docs/ReleaseNotes/

This gives me the following error:

svn: E145000: New entry name required when importing a file

Anyone know the issue?

Jonathan Hall
  • 75,165
  • 16
  • 143
  • 189
Europa
  • 974
  • 12
  • 40

2 Answers2

3

Your answer can find here How do I add File to SVN without Checking out .

svn import -m "Adding just a file" file_name http://path/to/svn/repo/file_name
Dyan Li
  • 31
  • 2
0

File name should be given in SVN URL. So, the command should be as follows.

svn import -m "Release Notes" Release_Notes_2.2.0.pdf https://myrepo.com/svn/docs/ReleaseNotes/Release_Notes_2.2.0.pdf

Thank you.