I have a very deep git history
0000001
0000002
0000003
0000004
...
I used git-bisect to find the hash of an old issue which returned 0000003. Turns out the solution may lie in one of the commits after this hash 0000002 or even more recent
I can use
git log 0000003
which will show the history of the project until that commit, but nothing after
0000003
0000004
...
I want to find the commits around / after 0000003 using only hashes - ie, I want to find 0000002 without manually scrolling all the history.
How is this done?