git svn clone で取得したリポジトリで以下のwarningが発生するときの回避策
warningの例
1 2 3 4 5 6 7 8 |
$ git svn rebase W: Refspec glob conflict (ref: refs/remotes/svn/Preview_August@1053): expected path: Src/branches/Preview_August@1053 real path: Src/trunk2 Continuing ahead with Src/trunk2 [...] Continuing ahead with 25_Android_Src Current branch master is up to date. |
回避策
~/.git/configの重複行を削除
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
[core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true ignorecase = true precomposeunicode = true [svn-remote "svn"] url = http://someone.somewhere.jp/svn/foo fetch = Src/trunk:refs/remotes/svn/trunk branches = Src/branches/*:refs/remotes/svn/* tags = Src/tags/*:refs/remotes/svn/tags/* - branches = Src/branches/*:refs/remotes/svn/* - tags = Src/tags/*:refs/remotes/svn/tags/* |