Hi,
I was working with Git on a SVN branch `a' (say my Git branch is
`mya') and I wanted to create a new SVN branch `b' and dcommit my
changes there for others (poor SVN users) to see. So I did a svn cp
url://a url://b to create the branch `b' in SVN, git-svn fetch to
import this branch, git checkout -b myb b and then rebased mya and
then did a dcommit. Although the last commit at this point (in
branch myb) had a svn-id "pointing to" the SVN branch b, dcommit sent
the commits to the branch `a'.
Test case:
svnadmin create repos
svn co file://`pwd`/repos wc
cd wc
svn mkdir branches
svn mkdir branches/a
echo foo >branches/a/foo
svn add branches/a/foo
svn ci -m 'branch a'
cd ..
git-svn clone --branches=branches file://`pwd`/repos wc.git
cd wc.git
echo git is cool >>foo
git-commit -a -m 'commit in git in branch a'
cd ../wc
svn cp branches/a branches/b
svn ci -m 'branch b'
cd ../wc.git
git-svn fetch
git-checkout -b myb b
git-rebase master
git-svn dcommit # sends the commit to SVN branch `a' instead of SVN
branch `b'!
Temporary workaround (in case someone finds this post after stumbling
on this problem):
svn mv branches/a branches/tmp
<commit>
svn mv branches/b branches/a
<commit>
svn mv branches/tmp branches/b
<commit>
After this, git-svn fetch will slightly complain but it will work
nevertheless.
Found possible branch point: url://repo/branches/a => url://repo/
branches/tmp, <N>
Found branch parent: (b) <sha1>
Following parent with do_switch
Successfully followed parent
r<N> = <sha1> (b)
Found possible branch point: url://repo/branches/b => url://repo/
branches/a, <N+1>
Found branch parent: (a) <sha1-X>
Index mismatch: <sha1> != <sha1>
rereading <sha1-X>
Following parent with do_switch
Successfully followed parent
r<N+1> = <sha1> (a)
[...]
Despite the `Index mismatch' sort of warning, the Git repo seems to
be correct.
Cheer...