I'm using Zsh and and trying to run git show for a project to see my revision history. If I do
git show HEAD
it works fine showing me my last commit, however the following commands don't work
[master↑5⚡]:~/project $ git show HEAD^
zsh: no matches found: HEAD^
[master↑5⚡]:~/project $ git show HEAD^^
zsh: no matches found: HEAD^^
However this does work
git HEAD~1
Am I doing something wrong here with git show HEAD^^
?
git version 1.7.4.5