I am still new to git and I came across this cherry-pick command. Lets say I cherry-pick a commit (lets call it CA) from devel branch to the master branch and they now both have different sha1 id if what I interpret is correct.
So my question is, if later I want to check the "differences" between devel
branch and master branch using git cherry
to find out which commits are
eventually pushed to master and which does not, but since the commits (CA) I
cherry-picked just now will have a different SHA1 id so when I execute git
cherry master devel
what does it tell me? Does it tell me CA is pushed to the
master? Or does it tell me CA is NOT pushed to the master since they don't
share the same SHA1 ID?