Last active
November 22, 2018 02:00
-
-
Save mikeybeck/99e04adb70368b989b80a70322301bc7 to your computer and use it in GitHub Desktop.
[git bisect] #shell
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
| git bisect start | |
| git bisect bad # Current commit is broken | |
| git bisect good HEAD~100 # Commit at HEAD~100 is good | |
| # Then input `git bisect good` or `git bisect bad` for each provided commit, until you find the commit which introduced the bug. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment