我想回到我上次的github提交,但我不知道如何继续。 这是我的git日志,第一个是我的最后一个
commit 0d74db9ccbdec3ffc42c42216d1352e9bee51b62 (HEAD -> master,
origin/master)
Author: filipmyllari <fm222hp@student.lnu.se>
Date: Tue May 29 14:26:15 2018 +0200
Recontructing navigation
commit e5e7f7002f76f47e394c097f770e325c7058002d
Author: filipmyllari <fm222hp@student.lnu.se>
Date: Wed May 23 14:29:44 2018 +0200
Small design tweaks and bug fixes
commit af133f818667edb12a880accd0be75f845da6a1c
:
答案 0 :(得分:0)
git checkout commitid
在你的情况下
git checkout e5e7f7
答案 1 :(得分:0)
要回到最后一个git commit,只需
git checkout last_commit_id
答案 2 :(得分:0)
用于删除特定Commit尝试后完成的上次更改
git reset --hard
。通过使用此命令,head将移动到最后一次提交。