Created
July 23, 2021 17:28
-
-
Save basilleaf/0bcb434d59cc7c874bb51b16072d9e15 to your computer and use it in GitHub Desktop.
search all git revisions, excluding some files
This file contains hidden or 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
git rev-list --all | ( | |
while read revision; do | |
git grep -F 'overrideNwayTestVariants' $revision | grep -v exclude_filename1.js | grep -v exclude_filename1.js; | |
done; | |
) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment