I\'m trying to commit a new version to my SVN repository but am met with this error:
svn: Commit failed (details follow):
svn: Could not use ext
I had a similar problem while trying to import a not versioned code into a new repository, based on the answers posted on this question i was able to solve my problem (thank you guys).
I am sharing the command i used to import a local project to SVN on using apache/http:
Where TestCodeDir is the project and hasn't been versioned yet.
svn import /var/svn/TestCodeDir http://localhost/svn/TestCodeDir -m "Initial Commit"
Note: You must to have your apache server well configured and it must to be running.
I hope this could help someone.