
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 resettry on your machineexplain 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 skiptry on your machineexplain 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 machineexplain 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 machineexplain this command
-
git-bisect:tldr:f3522 git-bisect: Display a log of what has been done so far.$ git bisect logtry on your machineexplain this command