Suppose I'm working on master and I've commit 5 changesets:
v1 -- v2 -- v3 -- v4 -- v5
now I do 'git reset --hard v3' to go back to a particular point. At this stage, 'git log' will only show the 1st 3 commits and the hash for v4 and v5 will not be displayed. How can I get back to v5 easily?
(I did find a way to do this by poking into the .git directory but it's tedious and I'd like to avoid dealing with .git directory directly).