Commit failed error when committing new version to svn repository

前端 未结 5 1642
北海茫月
北海茫月 2020-12-28 16:48

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

5条回答
  •  清酒与你
    2020-12-28 16:56

    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.

提交回复
热议问题