Is there any way to do the same thing as cherry-pick -x (add the hash of the original commit to the message of the copied commit) in a rebase?
I can work around it currently by replacing the following
git checkout other-branch
git rebase master
git checkout master
git merge other-branch
with
git checkout master
....
git cherry-pick -x other-branch^^^^
git cherry-pick -x other-branch^^^
git cherry-pick -x other-branch^^
git cherry-pick -x other-branch^
git cherry-pick -x other-branch
