RUEDAMINUTE > COM

search within stashes

ruedaminute

git stash list -G some_string

 

git stash list -p | grep 'diff --git' | grep ProgressiveRolloutUtils.swift

 

git stash list | while IFS=: read STASH ETC; do echo "$STASH: $ETC"; git diff --stat $STASH~..$STASH --; done | grep -e 'stash\|ProgressiveRolloutUtilsTests'

 

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top