1.0.0 • Published 6 years ago

git-ishow v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

git-ishow

Git plugin that lets you interactively select a stashed item to show

An iPipeTo workflow

Install

Get it with npm:

npm install -g git-ishow

Run

In any git repo folder:

git ishow

OR

bypass npm install and run it at once using npx:

npx git-ishow

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 cut, xargs cmds)
  • git globally installed
  • ipt globally installed
alias git-ishow="git stash list | ipt -M 'Select stashed item to show:' --unquoted | cut -d ':' -f 1 | xargs git stash show -u"

License

MIT © 2018 Ruy Adorno