How can I undo git reset --hard HEAD~1?

后端 未结 18 3143
逝去的感伤
逝去的感伤 2020-11-22 00:21

Is it possible to undo the changes caused by the following command? If so, how?

git reset --hard HEAD~1
18条回答
  •  旧时难觅i
    2020-11-22 00:49

    git reflog

    • Find your commit sha in the list then copy and paste it into this command:

    git cherry-pick

提交回复
热议问题