Since we're using signed-off-by tags for backports, let's add -s to
the command so that we can finally copy-paste it!
echo
echo "In order to show and/or apply all leftmost commits to current branch :"
echo " git show ${left_commits[@]}"
- echo " git cherry-pick -x ${left_commits[@]}"
+ echo " git cherry-pick -sx ${left_commits[@]}"
echo
echo "In order to show and/or apply all rightmost commits to current branch :"
echo " git show ${right_commits[@]}"
- echo " git cherry-pick -x ${right_commits[@]}"
+ echo " git cherry-pick -sx ${right_commits[@]}"
fi
)