Junio C Hamano wrote:
We actually have half of that filtering in "--cherry-pick" that was
introduced in d7a17ca (git-log --cherry-pick A...B, 2007-04-09).
Perhaps the recent cherry-pick that allows multiple commits to be picked
should use that option (i.e. a "log --cherry-pick --right-only ..@{u}"
equivalent) when coming up with which commits to apply?
No UI ideas from me, but I have a script like this sitting in $HOME/bin:
base=$1 topic=$2
git rev-list $base..HEAD |
git diff-tree -s --pretty=raw --stdin |
sed -ne 's/(cherry picked from commit \([0-9a-f]*\))/\1/p' |
xargs git cherry-pick -x -s \
--cherry-pick --right-only --no-merges HEAD...$topic \
--not $base