0

http://dryice.name/blog/freebsd/svn-make-the-branches-directory-before-make-a-branch/の指示に従って、SVNリポジトリのブランチに新しいディレクトリを作成しようとしています。 。

svn mkdir http://svn.example.com/repos/calc/branches \ -m "make the branches directory to hold all the branches"

しかし、エラーが発生します:

svn: Could not use external editor to fetch log message; consider setting the $SVN_EDITOR environment variable or using the --message (-m) or --file (-F) options
svn: None of the environment variables SVN_EDITOR, VISUAL or EDITOR are set, and no 'editor-cmd' run-time configuration option was found

私はこの質問を見ました:新しいバージョンをsvnリポジトリにコミットするときにコミット失敗エラーがあり、メッセージ付きのオプションを追加し-mましたが、それでも上記のエラーが発生します。

コマンドの何が問題になっていますか?これを解決するにはどうすればよいですか?

4

1 に答える 1

1

順序を逆にして-m最初にオプションを追加すると、うまくいくことがわかりました。

したがって、コマンドは次のようになります。

svn -m "make the branches directory to hold all the branches" http://svn.example.com/repos/calc/branches
于 2012-10-11T16:14:41.280 に答える