Go to particular revision
问题 I cloned a git repository of a certain project. Can I turn the files to the initial state and when I review the files go to revision 2, 3, 4 ... most recent? I\'d like to have an overview of how the project was evolving. 回答1: Use git checkout <sha1> to check out a particular commit. 回答2: To go to a particular version/commit run following commands. HASH-CODE you can get from git log --oneline -n 10 git reset --hard HASH-CODE Note - After reset to particular version/commit you can run git pull