I have a problem with a SVN branch.
I made a checkout of it with git checkout -t -b stable svn/stable
.
Then I did a merge with git rebase master
.
After that I tried to commit the merge changes into the remote branch with git svn dcommit
But now it seems, that Git pushed the changes into the trunk instead of the branch :(
And git status
tells me:
# On branch stable
# Your branch and 'svn/stable' have diverged,
# and have 218 and 52 different commit(s) each, respectively.
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
...
Does somebody know what I did wrong and how to do it right?