A while back a change was committed and I need to know when it was released to production.
We have two branches, master and production. I have found the commit SHA with command git log --all
How can I know what branch this was committed to, and if it was committed to master, when was it merged into production?
I've tried git log -v --graph <branch>
for each branch, they just show the same info with identical timestamp.
It was 4 months ago, so git reflog show --all | grep <SHA>
no longer shows what I need.
Thanks