Tagged Questions
git-bisect is part of the git CM software. It is used to find which change broke something.
2
votes
1answer
383 views
How to use git bisect?
I have read some articles saying that git bisect is awesome, however I'm not native speaker and I can't understand why it's awesome.
Could you please demonstrate on some code sample what is so ...
2
votes
1answer
45 views
How can I find out what commit(s) git bisect would try next?
In some cases during a git bisect session, testing a particular commit takes quite long (for instance, because I have to build a full release package and deploy it on a particularly strange machine). ...
2
votes
1answer
281 views
git bisect doesn't work, no output
I tried to use git bisect lately, but it just didn't work. The tree remained in master and I saw no output from git bisect whatsoever. Here's what I've tried:
git bisect start
git bisect bad # no ...
1
vote
4answers
277 views
How do you get git bisect to ignore merged branches?
I'm aware that git bisect is branch-aware by design, so that if between good commit, G, and bad commit, B, you merged in a branch, it needs to take those changes into consideration as well, as the bug ...
1
vote
2answers
92 views
How to get rid of “refs/bisect/bad” branches in Git
I have the following in my ~/.gitconfig (this is only here to help you understand what I'm looking at):
[alias]
lg = log --graph --all --pretty=format:'%Cred%h %Cgreen(%cr)%Creset - %s ...
1
vote
1answer
165 views
How can I cut down a git bisect run using file paths?
I'm using git bisect to find a failure inducing commit. However, a lot of the commits in the range are definately irrelevant (because they are commits to the documentation or to unit tests). I'd like ...
1
vote
1answer
67 views
What is the best way to do bisecting with subversion?
I tend to use the bisect command in git extensively. Now I want to do the same in a subversion repository. What is the best way to bisect a subversion repository?
Converting the svn repository to git ...
1
vote
1answer
236 views
Is there a script that provides the equivalent to git-bisect for Perforce (p4)?
The git-bisect provides hooks to perform a binary search on revisions and figure out which change broke the design. Is there an equivalent script for Perforce? I did SO and Google searches with no ...
1
vote
2answers
83 views
What's the best way to change the working tree to a specific commit before bisecting?
My usual workflow when starting a git bisect session is:
git bisect start # start a bisect session
git bisect bad # I noticed that the current state is broken
Now, often I know ...
0
votes
2answers
29 views
Undoing a git bisect mistake
I'm doing a non-automated git bisect via command line. All is going well until I accidentally hit return on the wrong line in my command history, and rather than running the test, I run 'git bisect ...