I'm trying to see the latest commits on branches that were not pushed to a specific branch (dev in my case)
So far what I've done is git checkout dev
and then git branch -r --no-merge
I got a list of branches that were not merged to dev, correct?
Now I'm trying to get the date of the latest commit for each of those branches.
I've tried pipping git branch -r --no-merge
into variations of git log --branches
but to no avail.