1 2 3 |
$ svn import test file:///home/hoge/subversion_test/test -m 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 |
エラーになった、どうやらEDITORが設定されてないとか。
1 |
$ setenv SVN_EDITOR /usr/bin/vim |
で設定。
エラーになった、こまった
1 2 3 |
$ svn import test file:///home/hoge/sub_test -m "初" svn: Unable to open an ra_local session to URL svn: Unable to open repository 'file:///home/hoge/sub_test' |
リポジトリを作っていなかったからっぽい。
1 |
# svnadmin create /var/svn --fs-type fsfs |
作った。
1 2 3 |
$ svn import test file:///home/hoge/sub_test -m "初" svn: Unable to open an ra_local session to URL svn: Unable to open repository 'file:///home/hoge/sub_test' |
かわらずエラー
そもそも間違ってた、file:…はリポジトリを指定するみたい。
1 2 |
$ svn import test file:///var/svn -m "初" svn: Can't open file '/var/svn/db/txn-current-lock': 許可がありません |
許可ないって
1 2 3 |
# svn import sub_test file:///var/svn -m "初" Adding sub_test/dadadada Adding sub_test/dadada |
できた。。
rootじゃなくても使えるリポジトリを作り直す
1 2 3 4 5 6 7 |
$ svnadmin create /home/hoge/var/svn --fs-type fsfs $ svn import test file:///home/hoge/var/svn -m "初" Adding test/jiji Adding test/baba Adding test/bubu Committed revision 1. |
できた!!