vote up 2 vote down star

Well.. I did some headless committing and merging and now I am deep in the ....

Here's what I did:

  1. fetched trunk with git-svn
  2. branched off work
  3. git commit ed stuff to work
  4. git svn dcommit ted the cnanges to svn, (yes, this i where it gets interesting)
  5. git checkout master
  6. git merge work

In this situation, git doesn't seem to understand that the changes to svn are the same as in itself. It is now up to date, but when I try to

git svn rebase master

I get Invalid upstream

flag

65% accept rate
1  
shouldn't that be git svn rebase? – Hasturkun Jun 8 at 13:10
whoopsy! you are right, Sorry. – AndreasT Jun 8 at 13:41

2 Answers

vote up 1 vote down check

The Solution to this was: Do a hard reset on Master to a common ancestor (svn and master)

svn reset --hard  <somehash>

then I did a rebase.

Now all directions of merges work again, as far as I can tell. I am still a total git newbie...

link|flag
Can you mark this answer as accepted, so others know it's the solution? – cbowns Jul 9 at 19:46
vote up 0 vote down

You need to rebase your master branch onto the updated SVN trunk before you attempt to rebase your work branch on master.

For example:

git checkout master
git svn rebase
git checkout work
git rebase master

This ensures that your master branch is in sync with the SVN trunk.

link|flag
Yeah I know that I messed up the proper protocol there. But this seems not to be a solution to the problem. At the point "git svn rebase " I still got an error message (don't know if it was invalid upstream too) – AndreasT Jun 8 at 13:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.