バージョン上がっても同じね。
どうにもメモリが原因でもなさそうなのです。
r13148 = 51578c44c8943fe08aae30fef726ebe84089f826 (refs/remotes/2.1)
Found possible branch point: file:///tres_home/share/repos/freebsd/stable/2.1 => file:///tres_home/share/repos/freebsd/release/2.1.0, 12369
Use of uninitialized value $u in substitution (s///) at /usr/lib/git-core/git-svn line 2097.
Use of uninitialized value $u in concatenation (.) or string at /usr/lib/git-core/git-svn line 2097.
refs/remotes/2.0.5: 'file:///tres_home/share/repos/freebsd' not found in ''
軽くググったら、変な投稿を見つけました。
RE: git svn bug(?)
https://groups.google.com/forum/#!msg/msysgit/7MQVwRO-2N4/qEwhGZTVYZUJ
Hey guys, I thought maybe I'd have a look at that line 2097 and see if there was anything I could do about it myself. I was able to determine that, in this specific case, the variable $u was not defined (or something). So, without knowing much about what's actually going on there, I changed this:
$u =~ s!^\Q$url\E(/|$)!! or die
"$refname: '$url' not found in '$u'\n";
to this:
if(!$u) {
$u = $pathname;
}else {
$u =~ s!^\Q$url\E(/|$)!! or die
"$refname: '$url' not found in '$u'\n";
}
and then just hoped for the best. So far it seems to be working. I'm getting some "Couldn't fine revmap" messages but I don't know if that's something I should be concerned about. Anyway, I don't know if this is a proper solution but I hope will help in some way.
Thanks,
Elijah-------
Hi. I'm following Casey's instructions here: http://stackoverflow.com/questions/79165/how-to-migrate-svn-with-history-to-a-new-git-repository
for migrating from svn to git. Everything goes pretty well until one point, when I run 'git svn fetch' and I get a message 'Found possible branch point: ' followed by something like <trunk> => <branch>, <commit id> and then these error messages:
Use of uninitialized value in substitution (s///) at C:\Program Files\Git/libexec/git-core\git-svn line 2097.
Use of uninitialized value in concatenation (.) or string at C:\Program Files\Git\libexec/git-core\git-svn line 2097.
Also, it would sure be nice to be able to copy/paste text to and from Git Bash.
たまたまバージョンが一致して、さらにエラー行が同じ人ハッケン(笑
というわけで怪しいパッチを手で適用してみたところ、続行されました。
バージョンメモ:
syasuda@cuatroVM:~$ git --version
git version 1.7.9.5
コメント