I am using this below command to see the list of commit hashes which have not been cherry picked from branch dev
to main
, since the main
branch creation date from dev
branch,
git log --reverse --left-only --cherry-pick --oneline dev...main --since 24-oct-2019 --pretty='format:%H %ae'
Output is like,
6c4176c3e621ef9b83ccb4ff7635f0bd9ecd8d5c a@xyx.com
91af2d1165d5b561af68824df37b07a520c5eb2f b@xyx.com
a19a8eca5c5fe388a9ae9ce67f5f3592b9662012 a@xyx.com
...
However, I am seeing that some of the CLs are showing in the list which already have been cherry-picked.
Why are they showing in the list?