仅仅是个演示如何找回Git删除的提交,我并没有源码
- Clone一下这个仓库,下面教你找回代码. origin url
git@gitlab.com:xd09/NewEBuy.git
- 找一找哪一个是代码删除之前的提交
git log
- 把git的HEAD头指向之前代码还在的hash
git reset 45ac382f --hard
- 哈哈,现在你找回来了
It's only a demo. I don't have the source code.
- Clone this repository. origin url
git@gitlab.com:xd09/NewEBuy.git
- Seek the commit before remove
git log
- Set Head to the commit before remove
git reset 45ac382f --hard
- Now you get the origin code