Convenient way to do "wrong way rebase" in git?
- by Kaz
I want to pull in newer commits from master into topic, but not in such a way that topic changes are replayed over top of master, but rather vice versa. I want the new changes from master to be played on top of topic, and the result to be installed as the new topic head.
I can get exactly the right object if I rebase master to topic, the only…