Skip to content

Instantly share code, notes, and snippets.

@bogdanRada
Forked from PramodGarg/Zshrc functions
Created April 17, 2020 09:04
Show Gist options
  • Save bogdanRada/12e07deb66ab014fe65a03522a3feedb to your computer and use it in GitHub Desktop.
Save bogdanRada/12e07deb66ab014fe65a03522a3feedb to your computer and use it in GitHub Desktop.
# Search filename in stash
function gitsearch()
{
searchCrit='stash\|'$1
git stash list | while IFS=: read STASH ETC; do echo "$STASH: $ETC"; git diff --stat $STASH~..$STASH --; done | grep -e $searchCrit
}
alias githunt=gitsearch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment