# git-ishow

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

Latest version **1.0.0** (published 2018-04-04) · MIT license · 0 weekly downloads

## Install

```sh
npm install git-ishow
pnpm add git-ishow
yarn add git-ishow
bun add git-ishow
```

Provides the command `git-ishow`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2018-04-04 |
| First published | 2018-04-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 33 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 5 |
| Author | Ruy Adorno |
| Maintainers | ruyadorno |
| Keywords | ipt, ipipeto, cli, interactive, git, inquirer, unix, terminal, workflow |

## Links

- npm: https://www.npmjs.com/package/git-ishow
- Repository: https://github.com/ruyadorno/git-ishow
- Homepage: https://github.com/ruyadorno/git-ishow#readme
- Issues: https://github.com/ruyadorno/git-ishow/issues
- npm.io page: https://npm.io/package/git-ishow

## Dependencies (1)

- [ipt](https://npm.io/package/ipt.md) ^2.0.0

## Alternatives

- [@salesforce/cli](https://npm.io/package/@salesforce/cli.md) — 389.7K weekly downloads
- [@mintlify/cli](https://npm.io/package/@mintlify/cli.md) — 208.9K weekly downloads
- [@grafana/e2e-selectors](https://npm.io/package/@grafana/e2e-selectors.md) — 128.7K weekly downloads
- [mintlify](https://npm.io/package/mintlify.md) — 112.0K weekly downloads
- [@intlayer/cli](https://npm.io/package/@intlayer/cli.md) — 22.8K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2018-04-04

## README

# git-ishow

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

> An [iPipeTo](https://github.com/ruyadorno/ipt) workflow

<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 />

## Install

Get it with **npm**:

```sh
npm install -g git-ishow
```

### Run

In any git repo folder:

```
git ishow
```

**OR**

bypass **npm install** and run it at once using **npx**:

```sh
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](https://git-scm.com/) globally installed
- [ipt](https://www.npmjs.com/package/ipt) globally installed

```sh
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](LICENSE) © 2018 [Ruy Adorno](http://ruyadorno.com)

---
_Source: https://npm.io/package/git-ishow · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
