Something else you can try in your `~/.gitconfig`
[alias] fza = "!git ls-files -m -o --exclude-standard | fzf -m --print0 | xargs -0 git add" git fza will quickly let you add files if you've changed a lot.
Oh, and another useful shortcut is this:
export FZF_CTRL_T_COMMAND="mdfind -onlyin . -name ."
Something else you can try in your `~/.gitconfig`
I alias `git fza` to `ga` and it gets used a lotOh, and another useful shortcut is this:
Obviously only useful for MacOS, but fzf plus spotlight is pretty useful. You can use it to find that lost file that you only remember part of the name!