Last active
          January 5, 2024 11:18 
        
      - 
      
- 
        Save RobinDaugherty/d2fcd97d5d1f4edb111f3b67befd67dd to your computer and use it in GitHub Desktop. 
Revisions
- 
        RobinDaugherty renamed this gist Jan 5, 2024 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewingFile renamed without changes.
- 
        RobinDaugherty created this gist Jan 5, 2024 .There are no files selected for viewingThis 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ for sha in $(git fsck --no-reflog | awk '/dangling commit/ {print $3}'); do if git show --name-only $sha | grep -q 'apollo-codegen'; then echo "Found in $sha"; git log -n 1 $sha; fi done