I need to get the list of commits which have not been cherry-picked yet from other branch for specified time or size. Some of the answers in Stackoverflow suggest to use command like,
git cherry main dev
However, when I run that above command, I see commit SHA are shown from the beginning of the project (~2/3 years backward) when I am only interested for the last month commits. I saw git cherry
has no support for --since
. How can I see last months cherry-pickable commit list?
Is there any way around which can serve my requirement?