Awesome
git-iadd
Git plugin that allows you to interactively select which files to add to stage (git add)
<br /> <br /> <p align="center"> <a href="https://asciinema.org/a/174408"> <img alt="demo animation" width="600" src="https://cdn.rawgit.com/ruyadorno/git-iadd/master/demo.svg" /> </a> </p> <br />An iPipeTo workflow
Install
Get it with npm:
npm install -g git-iadd
Run
In any git repo folder:
git iadd
OR
bypass npm install and run it at once using npx:
npx git-iadd
Bash alias equivalent
If you're already an ipt user that has it globally installed, you can get this same functionality by just adding this alias to your bash (or equivalent) file:
Requirements
alias git-iadd="git status -s | sed s/^...// | ipt -m -M 'Select files to add:' | xargs git add"
License
MIT © 2018 Ruy Adorno