提交的文件被覆盖到git中

uinbv5nw  于 2023-08-01  发布在  Git
关注(0)|答案(1)|浏览(101)

我有一些本地修改成多个文件,我不想提交,所以我做了以下setps,但我提交的更改已经走了,可以任何人plz
1.需要保留代码更改的提交文件
1.在推送代码时出错,您位于原点之后
1.我已经覆盖本地更改与以下链接Force overwrite of local file with what's in origin repo?
1.现在我承诺的改变没有任何帮助。

4szc88ey

4szc88ey1#

如果没有GC运行,可以这样尝试:

# Inspect ref log to find lost commit

git reflog

# Retrieve the lost commit

git cherry-pick <lost-commit-hash>

字符串
如果成功了告诉我。

相关问题