Well, what you could do is:
for branch in $my_topic_branches; do
git rebase master $branch
# occasional fixups here...
done
But it seems that even then rebase first does the checkout $branch, and
then the checkout master right after that. At least the first checkout
should be unnecessary because all the revision range computations and
patch formating should be possible to do without the checkout. (The second
checkout is indispensable, of course.)
This has annoyed me, too, but not so much that I started looking at a fix,
though...
-- Hannes
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html