git how to move back commit
git, git-bash
Solution
`git checkout b9c157d` checks out the commit represented by the sha starting with `b9c157d` -- the commit you asked about.
Problem
I want to go back a committed one. How can I do? ``` $ git reflog 9b2a45e HEAD@{0}: reset: moving to HEAD~1 0c54f19 HEAD@{1}: reset: moving to HEAD~1 b9c157d HEAD@{2}: commit: updated from online 0c54f19 HEAD@{3}: commit: add img from download folder 9b2a45e HEAD@{4}: commit: add images 6fa6e34 HEAD@{5}: clone: from git@bitbucket.org:starpix/dojo.git $ git reset --hard HEAD~1 HEAD is now at 9b2a45e add images ``` I want to go back to "updated from online". how can I?