Skip to content

Instantly share code, notes, and snippets.

@oziks
Last active March 19, 2025 13:42
Show Gist options
  • Save oziks/8b149e38859c89df5ba86b26ad32d390 to your computer and use it in GitHub Desktop.
Save oziks/8b149e38859c89df5ba86b26ad32d390 to your computer and use it in GitHub Desktop.
# ~/.gitconfig
[alias]
stash-grep = "!f() { git stash list | awk -F: '{print $1}' | while read stash; do git stash show -p $stash | grep \"$1\" && echo \"Found in $stash\"; done; }; f"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment