Commit failed error when committing new version to svn repository

前端 未结 5 1592
北海茫月
北海茫月 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:57

    If you want to set default editor that will be used every time you run

    svn commit
    

    Try the following command in the shell:

    export SVN_EDITOR=nano
    

    This will set nano as the text editor for commit messages. From now on, when you call svn commit without the -m flag, nano will open. Upon closing nano, SVN will continue to commit.

提交回复
热议问题