C64-devkit – All you need to start coding 6510 asm for Commodore 64 on Windows
github.com1 pointsby jimstr0 comments
mkdir -p .git/lost-found
git fsck --lost-found
for commit in $(ls .git/lost-found/commit/); do
git show $commit | grep -q "your string here" && echo "Found in commit $commit"
done
This script will print the IDs of any dangling commits that contain the string "your string here".