Skip to content
Prev 8059 / 21312 Next

[Bioc-devel] Problem with the git mirror when committing to SVN

Hi Diego,

You were right, my previous example I sent before stopped working for me as
well, and I were thrown back in the git svn rebase conflict loop again.

I have just tried another solution, based on the idea that the local master
and the local devel branch got separated early in the bioc mirror git-svn
setup process (unclear how). And while rebasing actually works temporarily
within the devel branch, why not rebase the local master branch on top of
the local devel branch.

I tried these commands to explore if rebasing master on top of devel is the
way to go.

#first make sure that the devel branch is same as bioc/master
git reset --hard bioc/master

#checkout master
git checkout master

#pull the most recent changes from origin/master (github)
git pull

#rebase on top of devel
git rebase devel

#resolve all rebase cycles as before