top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

why doesn't "git bisect visualize" show all commit ids from the bisect log

+1 vote
497 views

When run that command immediate after "git bisect start" somebody sees the full commit range as defined in "git bisect start".

However running that command later after few git bisect steps" somebody is just presented with the remaining commit interval. Is this intended ?

posted Sep 20, 2013 by Kumar Mitrasen

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

"git bisect visualize" is meant as a tool to pin down the culprit commit that produced a regression. Sometimes after a few steps the problematic commit is obvious, which can save some test cycles.

If you want to see the list of commits tested so far, "git bisect log" can help. To see the entire bisection state, even outside the regression window, any old "gitk foo..bar" command will do --- the bisection state is kept in bisect/* refs that show up in blue.

Can you say a little more about what you're trying to do? Is the goal to have a nice visualization of what "git bisect log" shows? (I'm not aware of any such tool, and I agree it would be a nice thing.)

answer Sep 20, 2013 by Mandeep Sehgal
I'm trying to bisect a (bastard of an) issue in fs/dcache.c of the linux kernel. Till now I do not have a 100% reliable test scenario.

So often I do mark a commit id accidentally wrongly as bad/good. Therefore git bisect lands into the "wrong" half. As a consequence all subsequent bisects are senseless. Visualizing all infos from "git bisect
log" would help to see such mistakes.
Similar Questions
0 votes

I want to retrieve the commit history of a given file.What command should I issue? I expect the command like below.

D:GitTest> git show --commit-history test.txt
8194aaa
c419234
...
–1 vote

Running "git rev-parse --show-toplevel" doesn't print anything when it is run inside .git dir (on all levels)

0 votes

I want to show commit related information by the command below.By this, committed files are shown, but names only, off course.But in addition to this, I want to show commit file types (New, Edited, and Deleted).What argument should I use in the command?
git --no-pager show --format=%h%n%an%n%ai%n%s --name-only

+1 vote

I am trying to grep for git commit msg in git log...once I do git log..the log is really huge? Is there a way to get only the last 100 commits or is there an efficient way to search commit msg in git log?

0 votes

How to list all the branch that contains commit title is "xxxx yyyy" note: the commit-id is not the same though
the commit content is the same in different branch

...