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.

GitBash not showing up as a terminal option in Visual Studio Code

VS Code version 1.57.1. Added path of Git, Git\bin, Git\cmd in env. Had “Git Bash” profile with source and path elements. Removed source and kept only the path. When adding defaultProfile as “Git Bash” got “Value is not accepted” error. Restarting VS Code did not help. Changing “Git Bash” to “GitBash” (space removed) finally worked … Read more

Set an environment variable in git bash

A normal variable is set by simply assigning it a value; note that no whitespace is allowed around the =: HOME=c An environment variable is a regular variable that has been marked for export to the environment. export HOME HOME=c You can combine the assignment with the export statement. export HOME=c

Unicode (utf-8) with git-bash

I faced the same issue in MSYS Git 2.8.0 and as it turned out it just needed changing the configuration. $ git –version git version 2.8.0.windows.1 The default configuration of Git Bash console in my system did not show Greek filenames. $cd ~ $ls AppData/ ‘Application Data’@ Contacts/ Cookies@ Desktop/ Documents/ Downloads/ Favorites/ Links/ ‘Local … Read more

Change the location of the ~ directory in a Windows install of Git Bash

I don’t understand, why you don’t want to set the $HOME environment variable since that solves exactly what you’re asking for. cd ~ doesn’t mean change to the root directory, but change to the user’s home directory, which is set by the $HOME environment variable. Quick’n’dirty solution Edit C:\Program Files (x86)\Git\etc\profile and set $HOME variable … Read more