Skip to content

Instantly share code, notes, and snippets.

@cms
Forked from hartym/git-stash-grep
Last active August 29, 2015 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cms/969ac29b46c2524df303 to your computer and use it in GitHub Desktop.
Save cms/969ac29b46c2524df303 to your computer and use it in GitHub Desktop.
stashgrep() {
for i in `git stash list | awk -F ':' '{print $1}'`; do
git stash show -p $i | grep -H --label="$i" "$1"
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment