http://bugs.winehq.org/show_bug.cgi?id=28491
--- Comment #16 from Bruni earns.61@gmail.com 2012-01-06 14:38:21 CST ---
git branch bisect ec04f80 git checkout -b base 5de0203 git cherry-pick ec04f80 git checkout bisect git rebase base git branch -D base
I'm a novice in git, but I think that doing "git rebase base" and than "git branch -D base" is wrong. Both ec04f80 and 5de0203 are not present in "bisect" by the time you delete "base". Instead, is this any good to do
git branch bisect ec04f80 git checkout -b base 5de0203 git cherry-pick ec04f80 git checkout bisect git merge base git bisect start git bisect good 5de0203 git bisect bad HEAD ... etc git branch -D bisect
What do you think?