В git 1.7.9.5 Я могу запустить следующие строки без ошибок:
export SVNPASS=readonly
git clone [email protected]:dtenenbaum/RGalaxy.test.git
cd RGalaxy.test/
git config --add svn-remote.hedgehog.url https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/RGalaxy
git config --add svn-remote.hedgehog.fetch :refs/remotes/hedgehog
# the following is a shortcut to avoid fetching every commit since antiquity, since I happen to know the commit number
# where this folder was added to svn:
echo $SVNPASS | git svn fetch --username readonly hedgehog -r 65762:HEAD
git checkout -b local-hedgehog -t hedgehog
В git 1.8.3.4 и 1.8.4.1 последняя строка приводит к:
fatal: Cannot setup tracking information; starting point 'hedgehog' is not a branch.
Комментарии к этому вопросу предполагают понижение рейтинга, но я хотел бы знать, почему это происходит: это ошибка? И если да, то было ли это сообщено? Или есть лучший способ сделать это, и если да, то что это?
Кстати, "git branch -a" возвращает:
* master
remotes/hedgehog
remotes/origin/HEAD -> origin/master
remotes/origin/master