1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00

Add Show The Good And The Bad With Git Bisect as a git til

This commit is contained in:
jbranchaud
2018-03-19 14:35:19 -05:00
parent 18a8fd8ac5
commit 8f03095678
2 changed files with 17 additions and 1 deletions

View File

@@ -10,7 +10,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
For a steady stream of TILs from a variety of rocketeers, checkout For a steady stream of TILs from a variety of rocketeers, checkout
[til.hashrocket.com](https://til.hashrocket.com/). [til.hashrocket.com](https://til.hashrocket.com/).
_644 TILs and counting..._ _645 TILs and counting..._
--- ---
@@ -189,6 +189,7 @@ _644 TILs and counting..._
- [Show File Diffs When Viewing Git Log](git/show-file-diffs-when-viewing-git-log.md) - [Show File Diffs When Viewing Git Log](git/show-file-diffs-when-viewing-git-log.md)
- [Show List Of Most Recently Committed Branches](git/show-list-of-most-recently-committed-branches.md) - [Show List Of Most Recently Committed Branches](git/show-list-of-most-recently-committed-branches.md)
- [Show The diffstat Summary Of A Commit](git/show-the-diffstat-summary-of-a-commit.md) - [Show The diffstat Summary Of A Commit](git/show-the-diffstat-summary-of-a-commit.md)
- [Show The Good And The Bad With Git Bisect](git/show-the-good-and-the-bad-with-git-bisect.md)
- [Single Key Presses in Interactive Mode](git/single-key-presses-in-interactive-mode.md) - [Single Key Presses in Interactive Mode](git/single-key-presses-in-interactive-mode.md)
- [Staging Changes Within Vim](git/staging-changes-within-vim.md) - [Staging Changes Within Vim](git/staging-changes-within-vim.md)
- [Staging Stashes Interactively](git/staging-stashes-interactively.md) - [Staging Stashes Interactively](git/staging-stashes-interactively.md)

View File

@@ -0,0 +1,15 @@
# Show The Good And The Bad With Git Bisect
The [`git bisect`](https://git-scm.com/docs/git-bisect) command is a
powerful tool for tracking down a past commit where something verifiable
about the code changed -- whether it be visual or functional. After using
`git bisect` to traverse back and forth through your commit history, you may
be wondering where things stand.
The [`git bisect
log`](https://git-scm.com/docs/git-bisect#_bisect_log_and_bisect_replay)
command will show you each commit that has been inspected and whether you've
marked it as good or bad.
These records can be handy for double checking your work if you're worried
that you made a mistake along the way.