SubversionからGitへ移行する時にブランチやタグがないとエラーになる

エラー内容

$ java -Dfile.encoding=utf-8 -jar ../svn-migration-scripts.jar clean-git
Could not retrieve the config for the key: svn-remote.svn.branches

対処

  • ブランチやタグがないと.git/configに必要なエントリが出来ないことが原因なのでエントリを追加します。
    • とりあえずconfigを編集するコマンドでやりました
$ git config -e
[svn-remote "svn"]
    branches =
    tags =
  • これでsvn-migration-scripts.jarが動くようになります。