After doing a \"simple\" merge (one without conflicts), git show usually only shows something like
git show
commit 0e1329e551a5700614a2a34d8101e92fd9f2ca
in your case you just need to
git diff HEAD^ HEAD^2
or just hash for you commit:
git diff 0e1329e55^ 0e1329e55^2