Created
January 19, 2010 21:05
-
-
Save jbalogh/281294 to your computer and use it in GitHub Desktop.
Use `git bisect run` to figure out where you broke it.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cat <<EOF>runtests.sh | |
| #!/bin/sh | |
| python manage.py test --noinput --logging-clear-handlers | |
| EOF | |
| chmod +x runtests.sh | |
| git bisect start | |
| git bisect good master | |
| git bisect bad | |
| git bisect run runtests.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment