Git - git log vs git reflog
git log shows the current HEAD and its ancestor. it prints the commit's HEAD, then its parent, and so on. git reflog is a log of all commits or have been referenced in your repo at any time.
git log shows the current HEAD and its ancestor. it prints the commit's HEAD, then its parent, and so on. git reflog is a log of all commits or have been referenced in your repo at any time.