Add git files interactively from the command line.
Create a new bash script called git-addi...
#!/bin/bash
# Add files interactively
git add $(git status --porcelain | fzf -m | awk '{print $2}')
Make it executable...
$ chmod +x git-addi
Move git-addi script to a place that is in your $PATH.
For example, I have ~/.git/bin appended to my $PATH variable. This is where all my git scripts live.
export PATH=$PATH:~/.git/bin
$ mv git-addi ~/.git/bin
Enjoy!