Reputation: 143865
I have the following git svn situation.
git svn rebase
to update, created and switched to a branch bugfix
.bugfix
, committed.devel
, however I want to bring the recent bugfix in my branch without messing up things.What should I do now, in order to guarantee I don't mess up everything when I finally end my work in devel
and merge --squash onto master followed by the dcommit ? I am not ready to linearize, so I cannot do a git rebase on devel from the master (which would, as far as I get, put all my changes from devel
in front of the latest master
.
Upvotes: 1
Views: 56
Reputation: 3934
Wouldn't a simple git cherry-pick of your bugfix commit do the trick ?
Upvotes: 1