The following monstrosity very nicely found a git stash containing the word Upload which is what I was looking for:
git fsck --no-reflog | awk '/dangling commit/ {print $3}' | \
while read ref; do if [ "`git show -p $ref|grep -c Upload`" -ne 0 ]; then echo $ref ; fi ; done
Is there a prettier version of this? I guess the pickaxe should work but git log -g
doesn't see this commit.
git log -g -p
? – Tetrabasicgit log -g
doesn't list the 'winning' commit. – Centuple