In git 1.7.9.5 I could run the following lines without error:
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
In git 1.8.3.4 and 1.8.4.1 that last line results in:
fatal: Cannot setup tracking information; starting point 'hedgehog' is not a branch.
The comments to this question suggest downgrading, but I'd like to know why this is happening: is it a bug? And if so, has it been reported? Or is there a better way to do this and if so, what is it?
Incidentally, "git branch -a" returns:
* master
remotes/hedgehog
remotes/origin/HEAD -> origin/master
remotes/origin/master
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…