git reflog master --relative-date
f16c6ac master@{35 minutes ago}: pull: Merge made by the 'recursive' strategy.
3e50b71 master@{35 minutes ago}: commit: sku index
cd539c5 master@{3 hours ago}: pull: Merge made by the 'recursive' strategy.
e4e49e3 master@{3 hours ago}: commit: radio pageno val
git reset --hard 3e50b71 // commit-id
git reset --hard <commit-id>
或者
git reset --hard master@{35}
或者
git reset --hard HEAD~35
用HEAD表示当前版本 上一个版本就是HEAD^,上上一个版本就是HEAD^^