git-iadd

Git plugin that allows you to interactively select which files to add to stage (git add)

MIT License

Downloads
3
Stars
12
Committers
1

git-iadd

Git plugin that allows you to interactively select which files to add to stage (git add)

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

  • Unix-like system (needs sed, xargs cmds)
  • git globally installed
  • ipt globally installed
alias git-iadd="git status -s | sed s/^...// | ipt -m -M 'Select files to add:' | xargs git add"

License

MIT © 2018 Ruy Adorno