git fsck --unreachable | grep commit should show the sha1, although the list it returns might be quite large. git show <sha1> will show if it is the commit you want.
git cherry-pick -m 1 <sha1> will merge the commit onto the current branch.
git fsck --unreachable | grep commit should show the sha1, although the list it returns might be quite large. git show <sha1> will show if it is the commit you want.
git cherry-pick -m 1 <sha1> will merge the commit onto the current branch.