Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Git 在我的本地机器上配置。我使用了以下命令
git add . git commit -m "message "
昨天忘记推了。我昨天做了几个改动。今天由于一些问题我不能push。我不知道今天早上发生了什么,但我所有的代码都消失了。
push
我需要哪些命令来取回我的代码?
谢谢
如果你已经提交了你的代码(现在已经没有了),你可以检查git reflog.
git reflog
它将列出任何未引用的提交,供您返回。 参见例如“撤消git reset? ”或“如何在 git 中撤消结帐? ”。
git reset