标签: git github git-branch git-commit git-checkout
我结帐到之前的提交,然后意外地添加并提交了该提交,现在当我检查dev分支时,我的工作消失了,我怎样才能找回我的工作
我签出的提交显示为((741a ...)然后我git add。并且git提交提交更改((5b78c ...)
答案 0 :(得分:0)
只需使用git reflog:这将为您提供切换分支之前的最后一次提交。
git reflog
然后选择使用seen here以git cherry-pick的身份提交到您当前的dev分支,
git cherry-pick
dev
git cherry-pick <commitSHA>