Created
July 19, 2016 15:55
-
-
Save dpk/d2aae8c9a18e796581b62b310d0f5ba1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# find a file by content from basically anywhere in your git history | |
# for when you think you lost something but hopefully not | |
(git stash list; git reflog) | awk '{print $1}' | xargs git grep "${@}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment