$ git log --oneline
05f1c3b master: Modified 1.txt
f7433e0 Updated by master
e30dff9 Modified 1.txt
82ebf7a Modified 1.txt
cbb2785 master: Added 4.txt after rebase branch was created
980a5d6 b1: Added 1.txt
badc046 Resolved merge conflict
47a2d78 Mods by b2
c3eb61e Added by b1
9378e3d 1ST commit
The following shows nothing:
$ git log ^47a2d78
I thought it should show all commits from badc046 up, since these are not reachable from 47a2d78.
What am I missing?