Awesome
git-ishow
Git plugin that lets you interactively select a stashed item to show
<br /> <br /> <p align="center"> <a href="https://asciinema.org/a/174389"> <img alt="demo animation" width="600" src="https://cdn.rawgit.com/ruyadorno/git-ishow/master/demo.svg" /> </a> </p> <br />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
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