在HEAD不指向最后一个Commit时向git添加一个Commit(Tip)

时间:2019-09-18 12:11:20

标签: git

错了,我检出了master分支到特定的提交,并在Head未指向Tip的情况下添加了新的提交(最后一次提交) 现在我有一个“超脱的头”

那是什么意思?以及如何将该提交更改为最后一个提交(Tip

1 个答案:

答案 0 :(得分:2)

# create a branch at the current commit
git branch temp

# get back on master
git checkout master

# bring the lost commit back
git merge temp