如何删除本地库
find . -name ".git" | xargs rm -Rf
fatal: refusing to merge unrelated histories
git merge origin/master --allow-unrelated-histories
強制回滾到某個版本
git reset --hard dacb90ecf90bbaf02c1df088a7adbc69ef1cf6a0
git push -f # push 到 remote
find . -name ".git" | xargs rm -Rf
git merge origin/master --allow-unrelated-histories
git reset --hard dacb90ecf90bbaf02c1df088a7adbc69ef1cf6a0
git push -f # push 到 remote