1. git reflog或者git log查看到节点的hash值
2. git reset滚回某个节点
1)如果想保留当前的代码用 git reset --mixed ${Hash}
2)如果想联通代码也回到那个节点的状态用 git reset --hard ${Hash}