Is it possible to use fzf (command line fuzzy finder) with windows 10 git-bash?

Yes it is.

I just downloaded fzf.exe from fzf-bin, launched bash.exe, and typed ./fzf.exe

But for that, I use a simplified PATH first:

set PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\
set GH=C:\path\to\git
set PATH=%GH%\bin;%GH%\usr\bin;%GH%\mingw64\bin;%GH%\mingw64\libexec\git-core;%PATH%

With that PATH, fzf just works.

fzf in bash

Leave a Comment