I work on project which uses svn for CVS and about 5-6 months ago we forked branch version_1_9_1 from trunk. Now I have to merge them.
To ease my burden with svn, I wanted to try git for merging, so I followed instructions at: http://blog.wuwon.id.au/2010/09/painless-merge-conflict-resolution-in.html
I end up using following commands:
git svn clone -s hxxp://svn/repo/project project (this takes avout 20min for +30k commmits)
git checkout -b version_1.9.1 remotes/version_1_9_1
git checkout -b the_trunk trunk
git merge version_1.9.1
but when I do 'git mergetool' for, lets say file web.xml, meld opens dialogs for LOCAL and REMOTE, but BASE -file is missing.
While meld dialogs are still open, check which files there are, and get following list:
web.xml
web.xml.BACKUP.12480.xml
web.xml.LOCAL.12480.xml
web.xml.REMOTE.12480.xml
So, for my understanding there should be also file called web.xml.BASE.12480.xml, but its missing.
Result is same no matter if diff3 is activated or deactivated.
This lead me to think that there is something wrong with cloning... So I executed following commands in clean directory:
git svn clone -s hxxp://svn/repo/project project
gitk
git checkout -b version_1.9.1 remotes/version_1_9_1
gitk
git checkout -b the_trunk trunk
gitk
(Btw. Im doing this on ubuntu 11.04)
Each time I ran gitk, I see flat "hierarchy", where all svn commits are after another. So if I understand this correctly, there is something wrong with "git svn clone", as git cannot find common ancestor for trunk and branch version_1.9.1.
Can anyone point me to right direction with this issue?
Thanks for reading.