Skip to content

Instantly share code, notes, and snippets.

@caarmen
Created February 15, 2025 11:31
Show Gist options
  • Select an option

  • Save caarmen/379e21a0c178693609ed26c0f64e5cb7 to your computer and use it in GitHub Desktop.

Select an option

Save caarmen/379e21a0c178693609ed26c0f64e5cb7 to your computer and use it in GitHub Desktop.
When git bisect refs stopped being included in git log

Starting from this commit, git log no longer includes git bisect references like bisect/good or bisect/bad.

https://github.com/git/git/commit/92156291ca82ae4f4ad09fde8181c5f2b7dba6ca

This was first included in release v2.38.0, tagged on Sun Oct 2 08:44:15 2022 -0700

You now have to specify git log --clear-decorations (there may be some global config to set as an alternative).

@caarmen
Copy link
Author

caarmen commented Feb 15, 2025

You can add this to ~/.gitconfig:

[log]
        initialDecorationSet = all

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment