After git pull I have done git reset hard to undo the merge with commit id before merge.Somehow my entire commit is gone and I cant the see the commit in history also. But I have the commit id , on git show command I can see my changes.
How can I get back my changes and how to track what mistake I have done
git pullwill never remove a commit from your history; you did something else. Maybe acheckout, maybe areset? – Jefromi Jun 1 '11 at 18:37