Forrest logo
back to context overview

git-bisect

List of commands for git-bisect:

  • git-bisect:tldr:88fa4 git-bisect: After `git bisect` pinpoints the faulty commit, end the bisect session and return to the previous branch.
    $ git bisect reset
    try on your machine
    explain this command
  • git-bisect:tldr:9d7bf git-bisect: Skip a commit during a bisect (e.g. one that fails the tests due to a different issue).
    $ git bisect skip
    try on your machine
    explain this command
  • git-bisect:tldr:9f158 git-bisect: For each commit that `git bisect` selects, mark it as "bad" or "good" after testing it for the issue.
    $ git bisect ${select}
    try on your machine
    explain this command
  • git-bisect:tldr:d74f9 git-bisect: Start a bisect session on a commit range bounded by a known buggy commit, and a known clean (typically older) one.
    $ git bisect start ${bad_commit} ${good_commit}
    try on your machine
    explain this command
  • git-bisect:tldr:f3522 git-bisect: Display a log of what has been done so far.
    $ git bisect log
    try on your machine
    explain this command
back to context overview