Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qwyng/harvest
stashes grep tool with rust
https://github.com/qwyng/harvest
Last synced: 3 months ago
JSON representation
stashes grep tool with rust
- Host: GitHub
- URL: https://github.com/qwyng/harvest
- Owner: QWYNG
- Created: 2020-06-20T06:17:11.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-10T04:13:38.000Z (over 3 years ago)
- Last Synced: 2024-10-06T05:47:29.467Z (3 months ago)
- Language: Rust
- Size: 34.2 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# harvest
![Regression](https://github.com/QWYNG/harvest/workflows/Regression/badge.svg)
CLI application that does your git stashes finds## Install
- cargo
`cargo install harvest`
- Homebrew
`brew tap QWYNG/harvest`
`brew install harvest`## How to use
```
USAGE:
harvestARGS:
pattern to searchFLAGS:
-h, --help Prints help information
-V, --version Prints version information
```
It looks up the diffs of all the git stashes and the current branch with pattern and outputs the stash as a stdout in the following format
```
harvest fn
stash@{0}: WIP on master: beb5221 rm tests module
src/bm.rs | 2 ++
1 file changed, 2 insertions(+)stash@{1}: WIP on master: beb5221 rm tests module
src/lib.rs | 1 +
1 file changed, 1 insertion(+)
```