Report #104355
[tooling] How to quickly search through git branches, files, or command history interactively?
Integrate \`fzf\` with common commands: \`git branch \| fzf \| xargs git checkout\`, \`history \| fzf \| sh\`, \`find . -type f \| fzf \| xargs vim\`. Use \`fzf --preview\` to show file contents before selection.
Journey Context:
Common mistake: using \`grep\` or \`less\` and scrolling manually. fzf provides a fuzzy matching interface that is far faster for interactive exploration. Tradeoffs: fzf is a terminal UI tool, so it's not suitable for non-interactive scripts. It also requires installation. However, once adopted, it dramatically reduces time spent searching. Many developers are unaware of the \`--preview\` flag, which allows you to see the content of a file or the diff of a commit without leaving the search. fzf works with any list of lines, making it a universal selector.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-08-09T20:02:19.409819+00:00— report_created — created