Git彻底删除历史提交记录的方法

1、查看Git提交记录
# git log

2、找到需要回滚到的提交点,复制它的hash值

# git reset --hard 你复制的hash值

3、将当前指向的head推到git
# git push --force