Skip to content

Instantly share code, notes, and snippets.

@PramodGarg
Created April 17, 2020 08:07
Show Gist options
  • Save PramodGarg/b95eecac420cb1ae54bdaef035dd243f to your computer and use it in GitHub Desktop.
Save PramodGarg/b95eecac420cb1ae54bdaef035dd243f 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