I'm going to die, I undo all locally submitted changes,
I lost all the blogs I wrote for more than a month,
Dear friends, can I undo the operation I just performed?
TAT If it doesn’t work, I’m going to cry
漂亮男人2017-05-02 09:38:09
There must be more or less submission records for more than a month, otherwise you would not undo all local modifications. Return to the last modification: git reset --hard
,
当然你也可以git reflog
去查看下记录,再git reset --hard HEAD@{num}
num is the submission record number
大家讲道理2017-05-02 09:38:09
If you use PhpStorm, you can view Local History, which contains all your modification records
PHP中文网2017-05-02 09:38:09
git reflog
可以查看你的git的操作记录,然后通过git reset --hard HEAD@{}
You can roll back to a certain version
PHPz2017-05-02 09:38:09
If it has been committed, you can go back to a certain version based on the version number.