git clone blah
git checkout -b development
git checkout -b bug581
hack hack
git checkout -b bug588
hack hack
oh wait, bug 588 should sprout from development, not 581.
git rebase --onto development bug581 bug588
gives me:
Cannot rebase: You have unstaged changes.
Please commit or stash them.
err, but i dont? git status shows working directory is clean. so lets stash just for giggles.
git stash
git rebase --onto development bug581 bug588
ok now it works, but its pulling the history of bug 581 and 588, i just want the history of 588, not what was in 581.