You have at least 5 different ways to view the commit that you currently checked in your working copy during the git bisect session ( note that options 1-4 will also work if you are not doing a bisector ):
git show .git log -1 .- Bash.
git status .git bisect visualize .
I will explain each option in detail below.
Option 1: show git
As explained in this answer to the general question of how to determine which commit you currently have (not just during git bisect ), you can use git show with the -s option to suppress patch output:
$ git show --oneline -s a9874fd Merge branch 'epic-feature'
Option 2: git log -1
You can also just do git log -1 to find out what commit you are currently on.
$ git log -1 --oneline c1abcde Add feature-003
Option 3: bash prompt
In git version 1.8.3+ (or was it an earlier version?), If you have a Bash prompt configured to display the current branch that you checked in your working copy, then it will also show you the current commit that you checked in bisect session time or when you are in a "disconnected HEAD" state. In the example below, I have currently checked c1abcde :
Option 4: git status
Also, as in git version 1.8.3+ (and, probably, earlier, again, not sure), running git status will also show you what commit you checked during bisection and when you are in the offline state of HEAD
$ git status
Option 5: visualize git bisect
Finally, while you are doing git bisect , you can also just use git bisect visualize or its built-in alias, git bisect view run gitk so that you can graphically see what commit you are on, and also for which you have noted as good and bad so far since I am sure that this existed long before version 1.8.3, Iโm just not sure which version it was introduced in:
git bisect visualize git bisect view

user456814 Aug 10 '13 at 8:46 a.m. 2013-08-10 08:46
source share