Skip to content

Instantly share code, notes, and snippets.

@mikeybeck
Last active November 22, 2018 02:00
Show Gist options
  • Select an option

  • Save mikeybeck/99e04adb70368b989b80a70322301bc7 to your computer and use it in GitHub Desktop.

Select an option

Save mikeybeck/99e04adb70368b989b80a70322301bc7 to your computer and use it in GitHub Desktop.
[git bisect] #shell
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