Skip to content

Scripts usable with Git bisect. Customize for your project.

Notifications You must be signed in to change notification settings

fatso83/git-bisect-scripts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 

Repository files navigation

git-bisect-scripts

Say Thanks! Scripts usable with Git bisect - the best way to find where a regression was introduced in your project.

What do I do?

Customize the template for your project.

See this expanded working example for a test script used in an actual case, sinonjs/sinon#1526. There are many more examples.

Example usage

$ cp full-template.sh ../my-test-script.sh

$ vim ../my-test-script.sh

$ ../my-test-script.sh 
Test FAIL

$ git bisect bad master 

$ git checkout v2.0.0

$ ../my-test-script.sh 
Test OK

$ git bisect good 

$ git bisect run ../my-test-script.sh

About

Scripts usable with Git bisect. Customize for your project.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages