References
General References for Computer Related Items
Git
Back to last commit
Using Git — how to go back to a previous commit
General preformatted text:
$ git log --oneline
This will list the commits
Go back to the selected commit on your local environment Use git checkout & the ID (in the same way you would checkout a branch) to go back:
$ git checkout <commit-id> .